mirror of
https://github.com/a-sync/game-server-watcher.git
synced 2026-07-31 17:38:55 -04:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
const Valve = require('./valve');
|
|
|
|
class GoldSrc extends Valve {
|
|
constructor() {
|
|
super();
|
|
this.goldsrcInfo = true;
|
|
}
|
|
}
|
|
|
|
module.exports = GoldSrc;
|