Packets.h 180 B

123456789101112
  1. #ifndef PACKETS_H
  2. #define PACKETS_H
  3. #include "network/Packet.h"
  4. namespace Packet {
  5. enum class Type { WORLD, SET_BLOCK, PLAYER, CHAT };
  6. OutPacket build(Type t);
  7. }
  8. #endif