mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 08:48:32 +01:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
const Unreal2 = require('./unreal2');
|
|
|
|
class KillingFloor extends Unreal2 {
|
|
readExtraInfo(reader,state) {
|
|
state.raw.wavecurrent = reader.uint(4);
|
|
state.raw.wavetotal = reader.uint(4);
|
|
}
|
|
}
|
|
|
|
module.exports = KillingFloor;
|