diff options
| author | hatal175 <hatal175@users.noreply.github.com> | 2024-01-21 11:15:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-21 01:15:22 -0800 |
| commit | 0228b4e03ba255fdfabc25dab14ed21b5479a8d2 (patch) | |
| tree | 6e8f6ab50a10deb32db03e34d1139cb73e968511 /include/d/d_drawlist.h | |
| parent | 9f372c40d5cbac67bb445247efc56ab6a2b5a81e (diff) | |
Work on d_msg_scrn_howl + misc (#2040)
Diffstat (limited to 'include/d/d_drawlist.h')
| -rw-r--r-- | include/d/d_drawlist.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/d/d_drawlist.h b/include/d/d_drawlist.h index a075055164..5be233aa32 100644 --- a/include/d/d_drawlist.h +++ b/include/d/d_drawlist.h @@ -178,9 +178,13 @@ public: /* 800562D0 */ dDlst_shadowReal_c() { mState = 0; } dDlst_shadowReal_c* getZsortNext() { return mZsortNext; } + dDlst_shadowReal_c* getZsortPre() { return mZsortPre; } bool isNoUse() { return mState == 0; } bool isUse() { return mState == 1; } bool checkKey(u32 i_key) { return mKey == i_key; } + f32 getCameraZ() { return mCameraZ; } + void setZsortNext(dDlst_shadowReal_c* next) { mZsortNext = next; } + void setZsortPre(dDlst_shadowReal_c* pre) { mZsortPre = pre; } private: /* 0x0000 */ u8 mState; |
