using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pomelo.JSGModule { //技能释放状态 public static class GSBindResult { /** 未知异常 */ public static readonly int UNKOWN = -3; /** 异常参数 */ public static readonly int PARAM_ERROR = -2; /** 已有在线的,拒绝 */ public static readonly int ALREADY_EXISTS = -1; /** 加入成功 */ public static readonly int JOIN_OK = 0; /** 加入成功,重连 */ public static readonly int JOIN_RECONNECT = 1; } }