#ifndef PACKETS_H #define PACKETS_H #include "network/Packet.h" namespace Packet { enum class Type { WORLD, SET_BLOCK, PLAYER, CHAT }; OutPacket build(Type t); } #endif