mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
Fix some resource issues
This commit is contained in:
@@ -15,11 +15,11 @@ internal class Game
|
||||
|
||||
public void Play()
|
||||
{
|
||||
_io.WriteLine(Resource.Streams.Introduction);
|
||||
_io.Write(Resource.Streams.Introduction);
|
||||
var response = _io.ReadString("Do you want instructions");
|
||||
if (!response.Equals("no", StringComparison.InvariantCultureIgnoreCase))
|
||||
{
|
||||
_io.WriteLine(Resource.Streams.Instructions);
|
||||
_io.Write(Resource.Streams.Instructions);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user