node-gamedig/protocols/fivem.js
2017-08-10 06:49:42 -05:00

10 lines
199 B
JavaScript

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