Add support for FiveM closes #55

This commit is contained in:
mmorrison 2017-08-10 06:49:42 -05:00
parent c30339d866
commit 4c18b6a3fd
6 changed files with 55 additions and 28 deletions

9
protocols/fivem.js Normal file
View file

@ -0,0 +1,9 @@
class FiveM extends require('./quake2') {
constructor() {
super();
this.sendHeader = 'getinfo xxx';
this.responseHeader = 'infoResponse';
}
}
module.exports = FiveM;