mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
16 lines
358 B
C#
16 lines
358 B
C#
using System;
|
|
|
|
namespace Games.Common.IO
|
|
{
|
|
/// <summary>
|
|
/// An implementation of <see cref="IReadWrite" /> with input begin read for STDIN and output being written to
|
|
/// STDOUT.
|
|
/// </summary>
|
|
public sealed class ConsoleIO : TextIO
|
|
{
|
|
public ConsoleIO()
|
|
: base(Console.In, Console.Out)
|
|
{
|
|
}
|
|
}
|
|
} |