mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
d984662b84
* d_a_tag_evtarea mostly done, work on d_a_npc * work on d_a_npc_ash * work on Z2SoundHandles * Z2SoundObject, JAUSoundAnimator OK * Update Progress.md * work on d_a_tbox
39 lines
967 B
C++
39 lines
967 B
C++
#ifndef C_BG_S_CHK_H
|
|
#define C_BG_S_CHK_H
|
|
|
|
#include "dolphin/mtx/vec.h"
|
|
|
|
struct cBgD_Vtx_t : public Vec {};
|
|
|
|
class cBgS_GrpPassChk {
|
|
public:
|
|
virtual ~cBgS_GrpPassChk();
|
|
};
|
|
|
|
class cBgS_PolyPassChk;
|
|
|
|
class cBgS_Chk {
|
|
private:
|
|
/* 0x0 */ cBgS_PolyPassChk* mPolyPassChk;
|
|
/* 0x4 */ cBgS_GrpPassChk* mGrpPassChk;
|
|
/* 0x8 */ u32 mActorPid;
|
|
/* 0xC */ u8 unk_0x0C;
|
|
/* 0x10 */ // __vtable__
|
|
|
|
public:
|
|
cBgS_Chk();
|
|
void SetExtChk(cBgS_Chk&);
|
|
bool ChkSameActorPid(unsigned int) const;
|
|
|
|
void SetActorPid(u32 pid) { mActorPid = pid; }
|
|
u32 GetActorPid() const { return mActorPid; }
|
|
void SetPolyPassChk(cBgS_PolyPassChk* p_chk) { mPolyPassChk = p_chk; }
|
|
void SetGrpPassChk(cBgS_GrpPassChk* p_chk) { mGrpPassChk = p_chk; }
|
|
cBgS_PolyPassChk* GetPolyPassChk() const { return mPolyPassChk; }
|
|
cBgS_GrpPassChk* GetGrpPassChk() const { return mGrpPassChk; }
|
|
|
|
virtual ~cBgS_Chk(void);
|
|
}; // Size: 0x14
|
|
|
|
#endif /* C_BG_S_CHK_H */
|