mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-05 16:32:26 -06:00
15 lines
209 B
C
15 lines
209 B
C
#ifndef __ECONNECTIONTYPE__H__
|
|
#define __ECONNECTIONTYPE__H__
|
|
|
|
enum class eConnectionType : uint16_t {
|
|
SERVER = 0,
|
|
AUTH,
|
|
CHAT,
|
|
CHAT_INTERNAL,
|
|
WORLD,
|
|
CLIENT,
|
|
MASTER
|
|
};
|
|
|
|
#endif //!__ECONNECTIONTYPE__H__
|