mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00
40 lines
576 B
C#
40 lines
576 B
C#
/**
|
||
* 此文件保存State(状态)的枚举
|
||
*/
|
||
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
|
||
{
|
||
WaitConnect,
|
||
WaitLogin,
|
||
Online,
|
||
InRoom
|
||
}
|
||
}
|