mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
class Quake1 extends require('./quake2') {
|
|
constructor() {
|
|
super();
|
|
this.responseHeader = 'n';
|
|
this.isQuake1 = true;
|
|
}
|
|
}
|
|
|
|
module.exports = Quake1;
|