node-gamedig/protocols/starsiege.js

11 lines
232 B
JavaScript
Raw Normal View History

import tribes1 from "./tribes1.js";
export default class starsiege extends tribes1 {
constructor() {
super();
this.encoding = 'latin1';
this.requestByte = 0x72;
this.responseByte = 0x73;
}
}