You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
271 B

  1. -- 模块宏
  2. local ModuleName = {
  3. --[[
  4. * 测试用
  5. * <pre>
  6. * 协议测试.
  7. * 数据测试.
  8. * </pre>
  9. --]]
  10. TEST = 0;
  11. --[[
  12. * 基础模块
  13. * <pre>
  14. * 心跳.
  15. * </pre>
  16. --]]
  17. BASE = 1;
  18. --[[
  19. * 用户模块
  20. --]]
  21. USER = 99;
  22. }
  23. return ModuleName;