mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-24 03:58:14 -08:00
8 lines
215 B
C#
8 lines
215 B
C#
namespace King;
|
|
|
|
internal record struct Result (bool IsGameOver, string Message)
|
|
{
|
|
internal static Result GameOver(string message) => new(true, message);
|
|
internal static Result Continue => new(false, "");
|
|
}
|