Add pizza implementation in c#

This commit is contained in:
Flow
2022-01-09 18:51:34 +01:00
parent 3efbb9164c
commit dedca6ac0d
6 changed files with 494 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();
}
}
}