Files
basic-computer-games/07_Basketball/csharp/Program.cs
2022-04-11 08:41:12 +10:00

7 lines
153 B
C#

using Basketball;
using Games.Common.IO;
using Games.Common.Randomness;
var game = new Game(new ConsoleIO(), new RandomNumberGenerator());
game.Play();