Added 05 Bagels for C#

This commit is contained in:
James Curran
2021-02-19 23:27:33 -05:00
parent 9066956a2d
commit dfc50358b0
7 changed files with 327 additions and 12 deletions

View File

@@ -0,0 +1,14 @@
namespace BasicComputerGames.Bagels
{
public class Program
{
public static void Main(string[] args)
{
// Create an instance of our main Game class
var game = new Game();
// Call its GameLoop function. This will play the game endlessly in a loop until the player chooses to quit.
game.GameLoop();
}
}
}