ErrorCode.cs 549 B

123456789101112131415161718192021
  1. namespace Model
  2. {
  3. public static class ErrorCode
  4. {
  5. // 움솥코꼬댄轎
  6. public const int ERR_Success = 0;
  7. public const int ERR_NotFoundActor = 2;
  8. public const int ERR_RpcFail = 101;
  9. public const int ERR_SocketDisconnected = 102;
  10. public const int ERR_ReloadFail = 103;
  11. public const int ERR_ActorLocationNotFound = 104;
  12. // 쭉서宮밑댄轎
  13. public const int ERR_AccountOrPasswordError = 202;
  14. public const int ERR_ConnectGateKeyError = 203;
  15. public const int ERR_NotFoundUnit = 204;
  16. public const int ERR_SessionActorError = 207;
  17. }
  18. }