Simplify Pizza (C#) folder structure

This commit is contained in:
Zev Spitz
2022-01-17 08:31:36 +02:00
parent 516c8dbc34
commit 83c053fbd1
6 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace Pizza
{
internal class Program
{
static void Main(string[] args)
{
var pizzaGame = new PizzaGame();
pizzaGame.Play();
}
}
}