mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 16:58:32 +01:00
13 lines
248 B
JavaScript
13 lines
248 B
JavaScript
|
const Tribes1 = require('./tribes1');
|
||
|
|
||
|
class Starsiege extends Tribes1 {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.encoding = 'latin1';
|
||
|
this.requestByte = 0x72;
|
||
|
this.responseByte = 0x73;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Starsiege;
|