mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-24 20:10:15 -08:00
13 lines
225 B
C#
13 lines
225 B
C#
global using System;
|
|
global using Games.Common.IO;
|
|
global using Games.Common.Randomness;
|
|
|
|
using Mugwump;
|
|
|
|
var random = new RandomNumberGenerator();
|
|
var io = new ConsoleIO();
|
|
|
|
var game = new Game(io, random);
|
|
|
|
game.Play();
|