node-gamedig/protocols/fivem.js

10 lines
199 B
JavaScript
Raw Normal View History

2017-08-10 13:49:42 +02:00
class FiveM extends require('./quake2') {
constructor() {
super();
this.sendHeader = 'getinfo xxx';
this.responseHeader = 'infoResponse';
}
}
module.exports = FiveM;