mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-29 06:05:36 -08:00
Move player counts into Board
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
|
||||
A draw
|
||||
A draw
|
||||
@@ -8,7 +8,6 @@ internal static class Resource
|
||||
internal static class Streams
|
||||
{
|
||||
public static Stream Title => GetStream();
|
||||
public static Stream Draw => GetStream();
|
||||
public static Stream IllegalCoords => GetStream();
|
||||
public static Stream SameCoords => GetStream();
|
||||
}
|
||||
@@ -20,6 +19,11 @@ internal static class Resource
|
||||
public static string Winner => GetString();
|
||||
}
|
||||
|
||||
internal static class Strings
|
||||
{
|
||||
public static string Draw => GetString();
|
||||
}
|
||||
|
||||
private static string GetString([CallerMemberName] string? name = null)
|
||||
{
|
||||
using var stream = GetStream(name);
|
||||
|
||||
Reference in New Issue
Block a user