Files
basic-computer-games/71_Poker/csharp/Games.cs
2022-04-19 07:47:20 +10:00

19 lines
357 B
C#

using Poker.Resources;
internal class Game
{
private readonly IReadWrite _io;
private readonly IRandom _random;
public Game(IReadWrite io, IRandom random)
{
_io = io;
_random = random;
}
internal void Play()
{
_io.Write(Resource.Streams.Title);
_io.Write(Resource.Streams.Instructions);
}
}