mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 01:30:39 +01: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;
|