4th batch

This commit is contained in:
Leah Anderson
2026-03-02 12:00:59 -07:00
parent 9cfc2e5b16
commit 79c1737c34
33 changed files with 94 additions and 93 deletions

View File

@@ -44,8 +44,8 @@ void GameEventPacket::read(DataInputStream *dis) //throws IOException
void GameEventPacket::write(DataOutputStream *dos) //throws IOException
{
dos->writeByte((std::byte)_event);
dos->writeByte((std::byte)param);
dos->writeByte((byte)_event);
dos->writeByte((byte)param);
}
void GameEventPacket::handle(PacketListener *listener)