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