mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
const Valve = require('./valve');
|
|
|
|
class GoldSrc extends Valve {
|
|
constructor() {
|
|
super();
|
|
this.goldsrcInfo = true;
|
|
}
|
|
}
|
|
|
|
module.exports = GoldSrc;
|