mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-06-22 22:56:08 -07:00
e64fb6795c
Remove byte-order-marker pre-commit check as there would be many adjustments necessary
11 lines
311 B
C#
11 lines
311 B
C#
namespace hurkle
|
|
{
|
|
internal interface IHurkleView
|
|
{
|
|
GamePoint GetGuess(GuessViewModel guessViewModel);
|
|
void ShowVictory(VictoryViewModel victoryViewModel);
|
|
void ShowDirection(FailedGuessViewModel failedGuessViewModel);
|
|
void ShowLoss(LossViewModel lossViewModel);
|
|
}
|
|
}
|