diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2023-08-13 21:08:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-14 07:08:32 +0300 |
| commit | a997bb00bc2c8b08b260ef619a09885855dc4a3f (patch) | |
| tree | 9d055d1fbb3a790047a87869189cbca9b2e7e488 /include/d/d_drawlist.h | |
| parent | 9ae61771ec058c8e2a67ac08054e0e1e1ef6ce8b (diff) | |
d_drawlist (#1881)
Diffstat (limited to 'include/d/d_drawlist.h')
| -rw-r--r-- | include/d/d_drawlist.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/d/d_drawlist.h b/include/d/d_drawlist.h index 3f4ddfe924..7f008dfa5b 100644 --- a/include/d/d_drawlist.h +++ b/include/d/d_drawlist.h @@ -42,6 +42,9 @@ public: /* 80053E9C */ virtual void draw(); /* 800541F4 */ void update(cXyz&, _GXColor&, u16, u16, u16, u16, f32, f32, f32, f32); + f32 getRndValue(f32 param_0, f32 param_1) { return mRnd.getValue(param_0, param_1); } + f32 getRndFX(f32 param_0) { return mRnd.getFX(param_0); } + private: /* 0x04 */ cM_rnd_c mRnd; /* 0x10 */ cXyz field_0x10; @@ -92,6 +95,10 @@ public: /* 80052B00 */ dDlst_2DT2_c(); /* 80052B4C */ void init(ResTIMG*, f32, f32, f32, f32, u8, u8, u8, f32, f32); + f32 getScaleX() { return mScaleX; } + void setScaleX(f32 scale) { mScaleX = scale; } + void setScaleY(f32 scale) { mScaleY = scale; } + /* 0x04 */ GXTexObj mTexObj; /* 0x24 */ f32 field_0x24; /* 0x28 */ f32 field_0x28; |
