Files
basic-computer-games/60 Mastermind/csharp/Game/src/Command.cs
2021-07-11 09:14:38 -04: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
}
}