mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00: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;
|