Files
basic-computer-games/60_Mastermind/csharp/Command.cs
2022-01-17 11:48:01 +02:00

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
}
}