Files
DarkflameServer/dCommon/dEnums/eServerMessageType.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

13 lines
258 B
C++

#ifndef ESERVERMESSAGETYPE_H
#define ESERVERMESSAGETYPE_H
#include <cstdint>
//! The Internal Server Packet Identifiers
enum class eServerMessageType : uint32_t {
VERSION_CONFIRM = 0,
DISCONNECT_NOTIFY,
GENERAL_NOTIFY
};
#endif //!ESERVERMESSAGETYPE_H