Added 33. Dice (csharp)

This commit is contained in:
James Curran
2021-02-19 20:18:47 -05:00
parent dd7f2eb672
commit e6ae4828b6
7 changed files with 217 additions and 1 deletions

14
33 Dice/csharp/Program.cs Normal file
View File

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