mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +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;
|