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