mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-01 18:28:56 -04:00
dfa8efa97b
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
62 lines
1.2 KiB
C++
62 lines
1.2 KiB
C++
#ifndef D_BG_D_BG_S_GND_CHK_H
|
|
#define D_BG_D_BG_S_GND_CHK_H
|
|
|
|
#include "SSystem/SComponent/c_bg_s_gnd_chk.h"
|
|
#include "d/d_bg_s_chk.h"
|
|
|
|
class dBgS_GndChk : public cBgS_GndChk, public dBgS_Chk {
|
|
public:
|
|
dBgS_GndChk();
|
|
virtual ~dBgS_GndChk();
|
|
}; // Size: 0x54
|
|
|
|
class dBgS_LinkGndChk : public dBgS_GndChk {
|
|
public:
|
|
dBgS_LinkGndChk() { SetLink(); }
|
|
virtual ~dBgS_LinkGndChk() {}
|
|
};
|
|
|
|
class dBgS_ObjGndChk : public dBgS_GndChk {
|
|
public:
|
|
dBgS_ObjGndChk() { SetObj(); }
|
|
|
|
virtual ~dBgS_ObjGndChk() {}
|
|
};
|
|
|
|
class dBgS_ObjGndChk_Wtr : public dBgS_ObjGndChk {
|
|
public:
|
|
dBgS_ObjGndChk_Wtr();
|
|
|
|
virtual ~dBgS_ObjGndChk_Wtr();
|
|
};
|
|
|
|
class dBgS_ObjGndChk_Spl : public dBgS_ObjGndChk {
|
|
public:
|
|
dBgS_ObjGndChk_Spl();
|
|
|
|
virtual ~dBgS_ObjGndChk_Spl();
|
|
};
|
|
|
|
class dBgS_ObjGndChk_All : public dBgS_ObjGndChk {
|
|
public:
|
|
virtual ~dBgS_ObjGndChk_All();
|
|
|
|
dBgS_ObjGndChk_All() { OnAll(); }
|
|
};
|
|
|
|
class dBgS_CamGndChk : public dBgS_GndChk {
|
|
public:
|
|
dBgS_CamGndChk() { SetCam(); }
|
|
|
|
virtual ~dBgS_CamGndChk();
|
|
};
|
|
|
|
class dBgS_CamGndChk_Wtr : public dBgS_CamGndChk {
|
|
public:
|
|
dBgS_CamGndChk_Wtr();
|
|
|
|
virtual ~dBgS_CamGndChk_Wtr();
|
|
};
|
|
|
|
#endif /* D_BG_D_BG_S_GND_CHK_H */
|