Files
basic-computer-games/60_Mastermind/csharp/Command.cs
T

14 lines
237 B
C#

namespace Game
{
/// <summary>
/// Enumerates the different commands that the user can issue during
/// the game.
/// </summary>
public enum Command
{
MakeGuess,
ShowBoard,
Quit
}
}