Constants.cs 577 B

1234567891011121314151617181920212223242526272829303132
  1. namespace Api
  2. {
  3. public class Constants
  4. {
  5. public static bool isLocal()
  6. {
  7. return false;
  8. }
  9. }
  10. public enum OnlinePlayerType
  11. {
  12. Friends,
  13. India,
  14. All
  15. }
  16. public enum NetErrorCode
  17. {
  18. Success = 0,
  19. ResponseCodeErrorInternal = 30000, // 内部错误
  20. ResponseCodeErrorParams = 30001, // 参数错误
  21. ResponseCodeErrorSessionExpired = 30002, // 会话失效
  22. ResponseCodeErrorCanNotGetKey = 40001, //无法获取到Key
  23. KeyNotFound = 40000,
  24. }
  25. }