Move player counts into Board

This commit is contained in:
Andrew Cooper
2022-09-08 08:11:08 +10:00
parent c1d43a742a
commit 5e998088f9
4 changed files with 25 additions and 17 deletions

View File

@@ -1,2 +1,2 @@
A draw
A draw

View File

@@ -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);