mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-17 18:07:59 -08:00
14 lines
237 B
C#
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
|
|
}
|
|
}
|