mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
7 lines
153 B
C#
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(); |