Files
basic-computer-games/75_Roulette/csharp/Program.cs
2023-02-05 21:28:51 +11:00

7 lines
197 B
C#

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