Packets.h 197 B

123456789
  1. #ifndef PACKETS_H
  2. #define PACKETS_H
  3. // packets from the server to clients
  4. enum ServerPacket { S_CHAT, S_WORLD_SEGMENT };
  5. // packets from clients to the server
  6. enum ClientPacket { C_CHAT };
  7. #endif