LogNode.cs 739 B

12345678910111213141516171819202122232425262728293031323334
  1. using System.ComponentModel;
  2. namespace GFGGame
  3. {
  4. public enum LogNode
  5. {
  6. [Description("游戏启动")]
  7. OnStart = 1,
  8. [Description("开始检查版本")]
  9. StartCheckVersion = 2,
  10. [Description("开始更新资源")]
  11. StartDownload = 3,
  12. [Description("开始加载游戏脚本")]
  13. StartLoadGameDll = 4,
  14. [Description("显示注册界面")]
  15. ShowRegister = 5,
  16. [Description("显示选服界面")]
  17. ShowSelectServer = 6,
  18. [Description("显示创角界面")]
  19. ShowCreateRole = 7,
  20. [Description("开始进入游戏")]
  21. StartEnterGame = 8,
  22. [Description("进入游戏成功")]
  23. OnEnterGame = 9
  24. }
  25. }