PomeloData.cs 649 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Pomelo.JSGModule
  7. {
  8. //技能释放状态
  9. public static class GSBindResult
  10. {
  11. /** 未知异常 */
  12. public static readonly int UNKOWN = -3;
  13. /** 异常参数 */
  14. public static readonly int PARAM_ERROR = -2;
  15. /** 已有在线的,拒绝 */
  16. public static readonly int ALREADY_EXISTS = -1;
  17. /** 加入成功 */
  18. public static readonly int JOIN_OK = 0;
  19. /** 加入成功,重连 */
  20. public static readonly int JOIN_RECONNECT = 1;
  21. }
  22. }