diff options
| author | elijah-thomas774 <elijahthomas774@gmail.com> | 2025-11-28 18:21:00 -0500 |
|---|---|---|
| committer | elijah-thomas774 <elijahthomas774@gmail.com> | 2025-11-28 18:21:00 -0500 |
| commit | ceebb6f9c0a50429aacfd3f170918acd0a1914e2 (patch) | |
| tree | 0d406fb52f5c444db6755b11dd7218c0ef78db41 /include | |
| parent | 0f40431da7a55cc3d3cded8b0ec0f91f03d0c5dd (diff) | |
d_t_barrel linked
Diffstat (limited to 'include')
| -rw-r--r-- | include/d/a/obj/d_a_obj_base.h | 2 | ||||
| -rw-r--r-- | include/d/t/d_t_barrel.h | 5 | ||||
| -rw-r--r-- | include/d/t/d_tg.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/include/d/a/obj/d_a_obj_base.h b/include/d/a/obj/d_a_obj_base.h index 039def40..1faa9589 100644 --- a/include/d/a/obj/d_a_obj_base.h +++ b/include/d/a/obj/d_a_obj_base.h @@ -264,4 +264,6 @@ public: /* 0x14 */ u8 _14[0x2C - 0x14]; }; +typedef dAcRef_c<dAcObjBase_c> dAcObjRef_c; + #endif diff --git a/include/d/t/d_t_barrel.h b/include/d/t/d_t_barrel.h index 3266d6d1..19fb57e8 100644 --- a/include/d/t/d_t_barrel.h +++ b/include/d/t/d_t_barrel.h @@ -3,6 +3,7 @@ #include "common.h" #include "d/a/d_a_base.h" +#include "d/a/obj/d_a_obj_base.h" #include "d/t/d_tg.h" #include "m/m_vec.h" #include "s/s_State.hpp" @@ -29,9 +30,9 @@ public: private: /* 0x0FC */ STATE_MGR_DECLARE(dTgBarrel_c); - /* 0x138 */ dAcRef_c<dAcOstageSink_c> mStageRef; + /* 0x138 */ dAcObjRef_c mStageRef; /* 0x144 */ dAcRef_c<dTgBarrelPos_c> mTgBarrelPosArr[10]; - /* 0x1BC */ dAcRef_c<dAcOBarrel_c> mBarrelArr[10]; + /* 0x1BC */ dAcObjRef_c mBarrelArr[10]; /* 0x234 */ mVec3_c mSpawnPosition; /* 0x240 */ u8 mStopFlag; ///< Stop Sceneflag - Note there is no checking done to see if valid /* 0x241 */ u8 mSpawnInterval; ///< Barrel Spawn Interval in Seconds diff --git a/include/d/t/d_tg.h b/include/d/t/d_tg.h index 4aa87822..a0cdf29d 100644 --- a/include/d/t/d_tg.h +++ b/include/d/t/d_tg.h @@ -8,4 +8,6 @@ public: virtual ~dTg_c() {} }; +typedef dAcRef_c<dTg_c> dTgRef_c; + #endif |
