Files
basic-computer-games/67_One_Check/csharp/Game.cs
Andrew Cooper 35f8248b1f Add game intro
2022-08-12 17:49:05 +10:00

21 lines
326 B
C#

namespace OneCheck;
internal class Game
{
private readonly IReadWrite _io;
private readonly Board _board;
public Game(IReadWrite io)
{
_io = io;
_board = new Board();
}
public void Play()
{
_io.Write(Streams.Introduction);
_io.WriteLine(_board);
}
}