refactor: add Packet::readPackedGuid() and replace 121 static method calls

Move packed GUID reading into Packet class alongside readUInt8/readFloat.
Replace 121 UpdateObjectParser::readPackedGuid(packet) calls with
packet.readPackedGuid() across 4 files, reducing coupling between
Packet and UpdateObjectParser.
This commit is contained in:
Kelsi 2026-03-25 13:58:48 -07:00
parent 3f54d8bcb8
commit 2c79d82446
6 changed files with 133 additions and 121 deletions

View file

@ -27,6 +27,7 @@ public:
uint32_t readUInt32();
uint64_t readUInt64();
float readFloat();
uint64_t readPackedGuid();
std::string readString();
uint16_t getOpcode() const { return opcode; }