Files
game-server-watcher/node_modules/gamedig/protocols/vcmp.js
Smith a5f3794527 include prod deps in vcs with some exceptions
* cloudno.de has problems installing new dependencies lately..
2022-06-30 22:59:51 +02:00

13 lines
234 B
JavaScript

const Samp = require('./samp');
class Vcmp extends Samp {
constructor() {
super();
this.magicHeader = 'VCMP';
this.responseMagicHeader = 'MP04';
this.isVcmp = true;
}
}
module.exports = Vcmp;