C# and WPF tutorial files
This commit is contained in:
21
C# Beginners/TicTacToe/MarkType.cs
Normal file
21
C# Beginners/TicTacToe/MarkType.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user