Simplify Mastermind (C#) folder structure

This commit is contained in:
Zev Spitz
2022-01-17 11:48:01 +02:00
parent df8269fd0c
commit ca9fafc758
12 changed files with 7 additions and 7 deletions

View File

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