/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

  1. #ifndef __MESSAGE_CATEGORY___
  2. #define __MESSAGE_CATEGORY___
  3. namespace Msg
  4. {
  5. //msg category
  6. enum
  7. {
  8. MC_Debug = 9,
  9. MC_Login = 10,
  10. MC_Control,
  11. MC_Entity,
  12. MC_Scene,
  13. MC_Player,
  14. MC_Role,
  15. //all client<-->server msg's category should small than MC_Cli_Max
  16. MC_Cli_Max = 100,
  17. };
  18. }
  19. #endif