mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-21 11:59:37 -06:00
13 lines
273 B
C++
13 lines
273 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__
|