/TGame/TCommon/Message/MsgCategory.h
http://awoe.googlecode.com/ · C Header · 23 lines · 17 code · 4 blank · 2 comment · 0 complexity · 4b14183d632387cf9f7e36d587513111 MD5 · raw file
- #ifndef __MESSAGE_CATEGORY___
- #define __MESSAGE_CATEGORY___
-
- namespace Msg
- {
- //msg category
- enum
- {
- MC_Debug = 9,
- MC_Login = 10,
- MC_Control,
- MC_Entity,
- MC_Scene,
- MC_Player,
- MC_Role,
- //all client<-->server msg's category should small than MC_Cli_Max
- MC_Cli_Max = 100,
- };
- }
-
-
- #endif