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

7 lines
156 B
C#

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