mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 12:25:10 -08:00
9 lines
166 B
C#
9 lines
166 B
C#
namespace hurkle
|
|
{
|
|
internal class LossViewModel
|
|
{
|
|
public int MaxGuesses { get; init; }
|
|
public GamePoint HurkleLocation { get; init; }
|
|
}
|
|
}
|