mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-10 21:26:56 +01: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;
|