mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 08:48:32 +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;
|