mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-14 07:51:12 +01:00
12 lines
248 B
JavaScript
12 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;
|