summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
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 = {};
};