mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 08:48:32 +01:00
9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
class Ut2004 extends require('./unreal2') {
|
|
readExtraInfo(reader,state) {
|
|
state.raw.ping = reader.uint(4);
|
|
state.raw.flags = reader.uint(4);
|
|
state.raw.skill = reader.uint(2);
|
|
}
|
|
}
|
|
|
|
module.exports = Ut2004;
|