MasterMind/Master Mind/Program.cs
AUnicornWithNoLife 0cb463fd0f init
2023-05-25 12:33:44 +01:00

19 lines
389 B
C#

namespace Master_Mind
{
internal class Program
{
static void Main(string[] args)
{
int opt = Menu.NumberMenu(new string[] { "PLAY", "EXIT" });
switch (opt)
{
case 0:
return;
case 1:
Game.Play();
break;
}
}
}
}