mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
#ifndef C_BG_S_CHK_H
|
|
#define C_BG_S_CHK_H
|
|
|
|
#include <mtx.h>
|
|
#include "f_pc/f_pc_base.h"
|
|
#include "SSystem/SComponent/c_bg_s_grp_pass_chk.h"
|
|
#include "SSystem/SComponent/c_bg_s_poly_pass_chk.h"
|
|
|
|
struct cBgD_Vtx_t : public Vec {};
|
|
|
|
class cBgS_Chk {
|
|
public:
|
|
/* 0x0 */ cBgS_PolyPassChk* mPolyPassChk;
|
|
/* 0x4 */ cBgS_GrpPassChk* mGrpPassChk;
|
|
/* 0x8 */ fpc_ProcID mActorPid;
|
|
/* 0xC */ bool mSameActorChk;
|
|
/* 0x10 */ // __vtable__
|
|
|
|
public:
|
|
cBgS_Chk();
|
|
void SetExtChk(cBgS_Chk&);
|
|
bool ChkSameActorPid(fpc_ProcID) const;
|
|
|
|
void SetActorPid(fpc_ProcID pid) { mActorPid = pid; }
|
|
fpc_ProcID 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; }
|
|
void OffSameActorChk() { mSameActorChk = false; }
|
|
|
|
virtual ~cBgS_Chk();
|
|
}; // Size: 0x14
|
|
|
|
#endif /* C_BG_S_CHK_H */
|