mirror of
https://github.com/Tribufu/node-gamedig
synced 2026-08-07 22:26:21 +00:00
8 lines
218 B
JavaScript
8 lines
218 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;
|