using System; namespace Games.Common.IO { /// /// An implementation of with input begin read for STDIN and output being written to /// STDOUT. /// public sealed class ConsoleIO : TextIO { public ConsoleIO() : base(Console.In, Console.Out) { } } }