#ifndef PACKET_CLASSES_H #define PACKET_CLASSES_H #include #include #include #include #include #include #include #include #include #include class TMessageBox { public: packet_header header; TPlyGuildCardTag tag; char mesg[512]; public: void bswap() { header.bswap(); tag.bswap(); }; }; #endif