node-gamedig/protocols/fivem.js

10 lines
199 B
JavaScript

class FiveM extends require('./quake2') {
constructor() {
super();
this.sendHeader = 'getinfo xxx';
this.responseHeader = 'infoResponse';
}
}
module.exports = FiveM;