11 lines
121 B
C#
11 lines
121 B
C#
|
|
namespace Chessistics.Engine.Model;
|
||
|
|
|
||
|
|
public enum SimPhase
|
||
|
|
{
|
||
|
|
Edit,
|
||
|
|
Running,
|
||
|
|
Paused,
|
||
|
|
Victory,
|
||
|
|
Defeat
|
||
|
|
}
|