Files
basic-computer-games/41_Guess/csharp/Program.cs
2022-08-19 19:15:52 +10:00

8 lines
194 B
C#

global using Games.Common.IO;
global using Games.Common.Randomness;
global using static Guess.Resources.Resource;
using Guess;
new Game(new ConsoleIO(), new RandomNumberGenerator()).Play();