Transliterate game logic

This commit is contained in:
Andrew Cooper
2022-03-25 08:14:29 +11:00
parent 235e6484de
commit 9106c2e13c
11 changed files with 447 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
using Basketball;
using Games.Common.IO;
using Games.Common.Randomness;
var game = new Game(new ConsoleIO(), new RandomNumberGenerator());
game.Play();