summaryrefslogtreecommitdiff
path: root/include/m_Do
diff options
context:
space:
mode:
authorCarco_21 <144170194+carter-ktb21@users.noreply.github.com>2025-12-12 23:54:42 -0500
committerGitHub <noreply@github.com>2025-12-12 20:54:42 -0800
commit87732304d15f80fa952a243bb3c6dec44f3f0856 (patch)
tree60e559953b012cdeadb6e53a991e07ceab4f0f87 /include/m_Do
parent2481e184fb99b7343cbf0893f838cc892feafc4a (diff)
d_particle debug work (#2944)
* misc work * more work * fixed error * more work * PR cleanup * missed cleanup * error fix * wii fix
Diffstat (limited to 'include/m_Do')
-rw-r--r--include/m_Do/m_Do_graphic.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/m_Do/m_Do_graphic.h b/include/m_Do/m_Do_graphic.h
index 7bb876f1ee..861575787b 100644
--- a/include/m_Do/m_Do_graphic.h
+++ b/include/m_Do/m_Do_graphic.h
@@ -55,12 +55,16 @@ public:
#if PLATFORM_WII || PLATFORM_SHIELD
class csr_c {
public:
- virtual ~csr_c();
+ virtual ~csr_c() {}
virtual bool isPointer();
- void particleExecute();
+ static void particleExecute();
+ static u32 getBlurID() { return m_blurID; }
static u32 m_blurID;
+ static cXyz m_oldEffPos;
+ static cXyz m_oldOldEffPos;
+ static cXyz m_nowEffPos;
};
static void entryBaseCsr(csr_c*);