format everything

This commit is contained in:
Tropical
2026-04-01 13:48:29 -05:00
parent 3e813592e4
commit dd93cfe91e
380 changed files with 2698 additions and 2595 deletions

View File

@@ -12,7 +12,8 @@ GameCommandPacket::GameCommandPacket() { length = 0; }
GameCommandPacket::~GameCommandPacket() {}
GameCommandPacket::GameCommandPacket(EGameCommand command, std::vector<uint8_t> data) {
GameCommandPacket::GameCommandPacket(EGameCommand command,
std::vector<uint8_t> data) {
this->command = command;
this->data = data;
length = 0;
@@ -31,7 +32,6 @@ GameCommandPacket::GameCommandPacket(EGameCommand command, std::vector<uint8_t>
}
}
void GameCommandPacket::read(DataInputStream* dis) {
command = (EGameCommand)dis->readInt();
length = dis->readShort();