diff options
Diffstat (limited to 'lib/gameState.hpp')
| -rw-r--r-- | lib/gameState.hpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/gameState.hpp b/lib/gameState.hpp index 5c718f4..edfedde 100644 --- a/lib/gameState.hpp +++ b/lib/gameState.hpp @@ -105,6 +105,12 @@ struct GameState { bool flowerOnHead = false; bool riceCakeEaten = false; bool frogDialogDone = false; - bool usedTalkButton = false; + int TalkButtonUseCount = 0; + int MountainClickCount = 0; + int FlowerClickCount = 0; + int ShrineClickCount = 0; + bool DialogueOnlyInput = false; + bool GameOver = false; + float GameOverTime = -1.0f; std::set<int> explored = {}; }; |
