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