diff options
| author | compugab <compugab@hotmail.com> | 2026-07-26 15:07:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-26 15:07:51 -0400 |
| commit | e5c423bf6e9068b3166cfdac64a3b1ba8e966ab6 (patch) | |
| tree | 21bf6749e79385031fba9294b082a3cc2d181f7f /include | |
| parent | fcd69feddd802598181a12d90e06bf6018b7721b (diff) | |
| parent | 07a84e7acbce61c7f8c7745ce025afa8a136c7cb (diff) | |
Merge pull request #1 from robojumper/matchin_title_lyt
Matchin title lyt - fixes
Diffstat (limited to 'include')
| -rw-r--r-- | include/d/lyt/d_lyt_demo_title.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/include/d/lyt/d_lyt_demo_title.h b/include/d/lyt/d_lyt_demo_title.h index 39cf78c3..84a554a8 100644 --- a/include/d/lyt/d_lyt_demo_title.h +++ b/include/d/lyt/d_lyt_demo_title.h @@ -12,9 +12,9 @@ public: virtual ~dLytDemoTitleMain_c() {}; bool build(d2d::ResAccIf_c *resAcc); - bool fn_802B0860(); - bool fn_802B0950(); - bool fn_802B0980(); + bool execute(); + bool draw(); + bool remove(); void fn_802B09F0(); void fn_802B0A50(); void fn_802B0B00(); @@ -47,10 +47,10 @@ public: dLytDemoTitle_c() : mStateMgr(*this) {} virtual ~dLytDemoTitle_c() {} - virtual bool build() override; - bool fn_802B1300(); - bool fn_802B13A0(); - bool fn_802B1410(); + virtual int create() override; + virtual int execute() override; + virtual int draw() override; + virtual int doDelete() override; private: STATE_FUNC_DECLARE(dLytDemoTitle_c, None); @@ -59,6 +59,8 @@ private: STATE_FUNC_DECLARE(dLytDemoTitle_c, Out); STATE_FUNC_DECLARE(dLytDemoTitle_c, End); + STATE_MGR_DEFINE_UTIL_INSTANCIATE_STATE(dLytDemoTitle_c); + static dLytDemoTitle_c *sInstance; /* 0x08c */ UI_STATE_MGR_DECLARE(dLytDemoTitle_c); |
