diff options
| author | elijah-thomas774 <elijahthomas774@gmail.com> | 2025-11-28 04:55:01 -0500 |
|---|---|---|
| committer | elijah-thomas774 <elijahthomas774@gmail.com> | 2025-11-28 04:55:01 -0500 |
| commit | 184ca8a623c14afe31e134dd8e26eb64f7499569 (patch) | |
| tree | 57bd06f8d8a87b6b631ffca0b7608a217eb92b42 /include | |
| parent | b568957bb4e7fec942f2b8e2882c488fae6ae6f4 (diff) | |
d_t_sword_battle_game Linked
Diffstat (limited to 'include')
| -rw-r--r-- | include/d/t/d_t_sword_battle_game.h | 4 | ||||
| -rw-r--r-- | include/toBeSorted/minigame_mgr.h | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/include/d/t/d_t_sword_battle_game.h b/include/d/t/d_t_sword_battle_game.h index 3f1255b2..2b16d28c 100644 --- a/include/d/t/d_t_sword_battle_game.h +++ b/include/d/t/d_t_sword_battle_game.h @@ -24,12 +24,10 @@ public: bool checkInEvent(const char *eventName); - static bool checkInBossRushFlag(); + bool checkInBossRushFlag(); void unsetInBossRushFlag(); void setInBossRushFlag(); - static bool checkInBossRushMinigame(); - void unsetEarlyFightFlags() const; void unsetImprisonedFightFlags() const; void unsetDemiseFightFlag() const; diff --git a/include/toBeSorted/minigame_mgr.h b/include/toBeSorted/minigame_mgr.h index 779e50c0..10bb4be3 100644 --- a/include/toBeSorted/minigame_mgr.h +++ b/include/toBeSorted/minigame_mgr.h @@ -28,6 +28,13 @@ public: static void destroy(); static void execute(); + static MinigameManager *GetInstance() { + return sInstance; + } + static bool checkInBossRush() { + return isInMinigameState(BOSS_RUSH); + } + private: MinigameManager() {} virtual ~MinigameManager() {} |
