Files
basic-computer-games/82_Stars/csharp/Program.cs
2022-03-20 17:25:33 +11:00

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);