mirror of
https://github.com/a-sync/game-server-watcher.git
synced 2026-07-31 17:38:55 -04: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;
|