refactor: mark guess functions for implementation

This commit is contained in:
wi11-holdsworth 2025-09-24 14:52:23 +10:00
parent 3654485f23
commit 6f600ff149

View file

@ -27,8 +27,10 @@ toPitch _ = Just (Pitch 'A' 1)
feedback :: [Pitch] -> [Pitch] -> (Int, Int, Int)
feedback _ _ = (0, 0, 0)
-- implement me
initialGuess :: ([Pitch], GameState)
initialGuess = ([Pitch 'A' 1], ())
initialGuess = ([], [[]])
-- implement me
nextGuess :: ([Pitch], GameState) -> (Int, Int, Int) -> ([Pitch], GameState)
nextGuess _ _ = ([Pitch 'A' 1], ())
nextGuess _ _ = ([], [[]])