mirror of
https://github.com/encounter/mkdd.git
synced 2026-03-30 11:30:02 -07:00
30 lines
513 B
C++
30 lines
513 B
C++
#ifndef EFFECTSCREEN_H
|
|
#define EFFECTSCREEN_H
|
|
|
|
class EffectScreenMgr
|
|
{
|
|
public:
|
|
EffectScreenMgr();
|
|
void calc();
|
|
void reset();
|
|
static void createMgr() {
|
|
ThisMgr = new EffectScreenMgr();
|
|
}
|
|
|
|
static EffectScreenMgr * getThis() {
|
|
return ThisMgr;
|
|
}
|
|
|
|
static EffectScreenMgr *ThisMgr;
|
|
u8 _00[0xd0];
|
|
};
|
|
|
|
inline void CreateEfctScreenMgr() {
|
|
EffectScreenMgr::createMgr();
|
|
}
|
|
|
|
inline EffectScreenMgr * GetEfctScreenMgr() {
|
|
return EffectScreenMgr::getThis();
|
|
}
|
|
|
|
#endif |