summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAshif Khan <[email protected]>2026-09-12 21:02:32 +0530
committerAshif Khan <[email protected]>2026-09-12 21:02:32 +0530
commitd99db5b7b663583d5eb26994336e8bb809f00529 (patch)
treebb5ee6938d3744dde3269d8da0c65ec2bb2b1dbb /lib
parentffd968a26826108ca9fb23d46ed5789260852eb7 (diff)
tweaking
Diffstat (limited to 'lib')
-rw-r--r--lib/gameState.hpp8
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 = {};
};