14 lines
212 B
C#
14 lines
212 B
C#
namespace QtCNETAPI.Enums
|
|
{
|
|
public enum GameStatus
|
|
{
|
|
WaitingForPlayer,
|
|
SelectingSymbol,
|
|
Ongoing,
|
|
P1Win,
|
|
P2Win,
|
|
NoWin,
|
|
PlayerDisconnected
|
|
}
|
|
}
|