mirror of
https://github.com/Tribufu/node-gamedig
synced 2026-08-07 22:26:21 +00: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;
|