mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-24 12:04:17 -08:00
10 lines
299 B
C#
10 lines
299 B
C#
global using System;
|
|
global using Games.Common.IO;
|
|
global using Games.Common.Randomness;
|
|
global using Salvo;
|
|
global using Salvo.Ships;
|
|
global using static Salvo.Resources.Resource;
|
|
|
|
//new Game(new ConsoleIO(), new RandomNumberGenerator()).Play();
|
|
new Game(new ConsoleIO(), new DataRandom()).Play();
|