1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace ET
- {
- public static partial class ErrorCode
- {
- public const int ERR_Success = 0;
-
-
-
-
-
-
-
-
- public const int ERR_LoginError = 200002;
-
- public const int ERR_RequestRepeatedly = 200003;
-
- public const int ERR_UserNameOrPasswordIsNull = 200004;
-
- public const int ERR_UserNameOrPasswordFormatError = 200005;
-
- public const int ERR_UserNameOrPasswordError = 200006;
-
- public const int ERR_UserPermanentBan = 200007;
-
- public const int ERR_UserBanTime = 200008;
- public enum EnterMap
- {
- MapNotExist = 210001,
- BattleSvrErr,
- }
- }
- }
|