milimoe 5a63b97341
添加Hashtable中Json对象的反序列化工具方法 (#36)
* 添加Hashtable中Json对象的反序列化工具方法

* ErrorType -> ErrorIPAddressType

* 新增房间状态:Matching
2023-06-28 00:58:52 +08:00

36 lines
507 B
C#

namespace Milimoe.FunGame.Core.Library.Constant
{
public enum StartMatchState
{
Matching,
Success,
Enable,
Cancel
}
public enum RoomState
{
Created,
Closed,
Matching,
Gaming,
Complete
}
public enum OnlineState
{
Offline,
Online,
Matching,
InRoom,
Gaming
}
public enum ClientState
{
Online,
WaitConnect,
WaitLogin
}
}