Add main game loop

This commit is contained in:
Andrew Cooper
2022-07-30 16:19:50 +10:00
parent a2dc514955
commit aedfd73e8c
3 changed files with 43 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
using System.Reflection;
using System.Runtime.CompilerServices;
namespace Chomp.Resources;
namespace Digits.Resources;
internal static class Resource
{
@@ -24,12 +24,6 @@ internal static class Resource
public static string WantToTryAgain => GetString();
}
internal static class Strings
{
public static string TooManyColumns => GetString();
public static string TooManyRows => GetString();
}
private static string GetString([CallerMemberName] string? name = null)
{
using var stream = GetStream(name);