namespace Api { public class Constants { public static bool isLocal() { return false; } } public enum OnlinePlayerType { Friends, India, All } public enum NetErrorCode { Success = 0, ResponseCodeErrorInternal = 30000, // 内部错误 ResponseCodeErrorParams = 30001, // 参数错误 ResponseCodeErrorSessionExpired = 30002, // 会话失效 ResponseCodeErrorCanNotGetKey = 40001, //无法获取到Key KeyNotFound = 40000, } }