mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 15:37:51 -08:00
Move all the console interaction into a view class making the game logic isolated from UI.
7 lines
116 B
C#
7 lines
116 B
C#
namespace hurkle
|
|
{
|
|
internal class GuessViewModel
|
|
{
|
|
public int CurrentGuessNumber {get;init;}
|
|
}
|
|
} |