mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00: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;
|