mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
class KillingFloor extends require('./unreal2') {
|
|
readExtraInfo(reader,state) {
|
|
state.raw.wavecurrent = reader.uint(4);
|
|
state.raw.wavetotal = reader.uint(4);
|
|
}
|
|
}
|
|
|
|
module.exports = KillingFloor;
|