diff options
| author | Ashif Khan <[email protected]> | 2026-09-12 21:02:32 +0530 |
|---|---|---|
| committer | Ashif Khan <[email protected]> | 2026-09-12 21:02:32 +0530 |
| commit | d99db5b7b663583d5eb26994336e8bb809f00529 (patch) | |
| tree | bb5ee6938d3744dde3269d8da0c65ec2bb2b1dbb /lib/gameState.hpp | |
| parent | ffd968a26826108ca9fb23d46ed5789260852eb7 (diff) | |
tweaking
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 = {}; }; |
