mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
35 lines
488 B
C#
35 lines
488 B
C#
namespace Milimoe.FunGame.Core.Library.Constant
|
|
{
|
|
public enum StartMatchState
|
|
{
|
|
Matching,
|
|
Success,
|
|
Enable,
|
|
Cancel
|
|
}
|
|
|
|
public enum RoomState
|
|
{
|
|
Created,
|
|
Gaming,
|
|
Close,
|
|
Complete
|
|
}
|
|
|
|
public enum OnlineState
|
|
{
|
|
Offline,
|
|
Online,
|
|
Matching,
|
|
InRoom,
|
|
Gaming
|
|
}
|
|
|
|
public enum ClientState
|
|
{
|
|
Online,
|
|
WaitConnect,
|
|
WaitLogin
|
|
}
|
|
}
|