ErrorCode.cs 413 B

12345678910111213141516
  1. namespace Model
  2. {
  3. public static class ErrorCode
  4. {
  5. public const int ERR_Success = 0;
  6. public const int ERR_NotFoundActor = 1;
  7. public const int ERR_RpcFail = 101;
  8. public const int ERR_AccountOrPasswordError = 102;
  9. public const int ERR_ConnectGateKeyError = 103;
  10. public const int ERR_ReloadFail = 104;
  11. public const int ERR_NotFoundUnit = 105;
  12. public const int ERR_ActorLocationNotFound = 106;
  13. }
  14. }