mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 07:29:02 -08:00
8 lines
196 B
C#
8 lines
196 B
C#
using Games.Common.IO;
|
|
using Games.Common.Randomness;
|
|
using Stars;
|
|
|
|
var game = new Game(new ConsoleIO(), new RandomNumberGenerator(), maxNumber: 100, maxGuessCount: 7);
|
|
|
|
game.Play(() => true);
|