Files
basic-computer-games/51 Hurkle/csharp/src/hurkle/GuessViewModel.cs
epvanhouten ed339ccd3f Introduce a view class
Move all the console interaction into a view class making the game logic
isolated from UI.
2021-02-27 20:59:55 -06:00

7 lines
116 B
C#

namespace hurkle
{
internal class GuessViewModel
{
public int CurrentGuessNumber {get;init;}
}
}