Add parameter input

This commit is contained in:
Andrew Cooper
2022-07-17 17:17:29 +10:00
parent 68c7d13c57
commit bbbf5560f4
3 changed files with 35 additions and 1 deletions

View File

@@ -26,6 +26,13 @@ internal static class Resource
public static string HowManyPlayers => GetString();
public static string HowManyRows => GetString();
public static string HowManyColumns => GetString();
public static string TooManyColumns => GetString();
}
internal static class Strings
{
public static string TooManyColumns => GetString();
public static string TooManyRows => GetString();
}
private static string GetString([CallerMemberName] string? name = null)