diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-01-22 21:55:25 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-01-22 21:55:25 -0500 |
| commit | 2f9b5486fcb83aef1204e2e5ed511373f254ec15 (patch) | |
| tree | 7e173f1b605a1cd7f6ae62737e1880b89129ee3e /include/SSystem/SComponent | |
| parent | bb16350a79f98bd0ddc92940cac6dbe3fca2063a (diff) | |
some d_drawlist functions
Diffstat (limited to 'include/SSystem/SComponent')
| -rw-r--r-- | include/SSystem/SComponent/c_bg_s_shdw_draw.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/SSystem/SComponent/c_bg_s_shdw_draw.h b/include/SSystem/SComponent/c_bg_s_shdw_draw.h index 806d7cf5..28feed19 100644 --- a/include/SSystem/SComponent/c_bg_s_shdw_draw.h +++ b/include/SSystem/SComponent/c_bg_s_shdw_draw.h @@ -12,15 +12,15 @@ typedef int (*cBgS_ShdwDraw_Callback)(class cBgS_ShdwDraw*, cBgD_Vtx_t*, int, in class cBgS_ShdwDraw : public cBgS_Chk { public: - cBgS_ShdwDraw(void); - virtual ~cBgS_ShdwDraw(void); - void Set(cXyz&, cXyz&); - void SetCallback(cBgS_ShdwDraw_Callback); + cBgS_ShdwDraw() {} + virtual ~cBgS_ShdwDraw() {} + void Set(cXyz& min, cXyz& max) { mM3dGAab.Set(min, max); } + void SetCallback(cBgS_ShdwDraw_Callback callback) { mCallbackFun = callback; } cM3dGAab* GetBndP() { return &mM3dGAab; } /* 0x14 */ cM3dGAab mM3dGAab; /* 0x30 */ cBgS_ShdwDraw_Callback mCallbackFun; -}; +}; // Size: 0x34 #endif /* C_BG_S_SHDW_DRAW_H */ |
