Files
basic-computer-games/25_Chief/csharp/Game.cs
Andrew Cooper 229084c492 Add game class
2022-04-15 21:43:24 +10:00

16 lines
179 B
C#

namespace Chief;
internal class Game
{
private readonly IReadWrite _io;
public Game(IReadWrite io)
{
_io = io;
}
internal void Play()
{
}
}