Files
Angel6/C# Beginners/TicTacToe/MarkType.cs
2017-05-29 21:01:07 +01:00

22 lines
443 B
C#

namespace TicTacToe
{
/// <summary>
/// The type of value a cell in the game is currently at
/// </summary>
public enum MarkType
{
/// <summary>
/// The cell hasn't been clicked yet
/// </summary>
Free,
/// <summary>
/// The cell is a O
/// </summary>
Nought,
/// <summary>
/// The cell is an X
/// </summary>
Cross
}
}