mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 01:30:39 +01:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
class FiveM extends require('./quake2') {
|
|
constructor() {
|
|
super();
|
|
this.sendHeader = 'getinfo xxx';
|
|
this.responseHeader = 'infoResponse';
|
|
}
|
|
}
|
|
|
|
module.exports = FiveM;
|