mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-03 16:48:04 -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;}
|
|
}
|
|
} |