mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-16 08:48:32 +01:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
const Unreal2 = require('./unreal2');
|
|
|
|
class Ut2004 extends 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;
|