mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 15:37:51 -08:00
Add game class
This commit is contained in:
16
25_Chief/csharp/Game.cs
Normal file
16
25_Chief/csharp/Game.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Chief;
|
||||
|
||||
internal class Game
|
||||
{
|
||||
private readonly IReadWrite _io;
|
||||
|
||||
public Game(IReadWrite io)
|
||||
{
|
||||
_io = io;
|
||||
}
|
||||
|
||||
internal void Play()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user