mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 15:37:51 -08:00
Implement game
This commit is contained in:
@@ -10,8 +10,7 @@ internal static class Resource
|
||||
public static Stream Introduction => GetStream();
|
||||
public static Stream TooLow => GetStream();
|
||||
public static Stream TooHigh => GetStream();
|
||||
public static Stream Good => GetStream();
|
||||
public static Stream VeryGood => GetStream();
|
||||
public static Stream BlankLines => GetStream();
|
||||
}
|
||||
|
||||
internal static class Formats
|
||||
@@ -26,6 +25,12 @@ internal static class Resource
|
||||
public static string Limit => GetString();
|
||||
}
|
||||
|
||||
internal static class Strings
|
||||
{
|
||||
public static string Good => GetString();
|
||||
public static string VeryGood => GetString();
|
||||
}
|
||||
|
||||
private static string GetString([CallerMemberName] string? name = null)
|
||||
{
|
||||
using var stream = GetStream(name);
|
||||
|
||||
Reference in New Issue
Block a user