mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* gnd check * more c_bg_s * start adding static asserts for size * Add more size checks * c_cc * c_cc progress * failed implementing cCcD_*Attr * progress * format * try destructor * data * remove unused asm * remove inlineCross * remove functions that didn't belong there * naming fix * match cCcD_SphAttr::CalcAabBox * cCcD_Stts::ClrTg * c_cc_s and mass fixes
24 lines
630 B
C++
24 lines
630 B
C++
#ifndef C_BG_S_GND_CHK_H
|
|
#define C_BG_S_GND_CHK_H
|
|
|
|
#include "SSystem/SComponent/c_bg_s_chk.h"
|
|
#include "SSystem/SComponent/c_bg_s_poly_info.h"
|
|
#include "SSystem/SComponent/c_xyz.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class cBgS_GndChk : public cBgS_Chk, public cBgS_PolyInfo {
|
|
/* 80267C1C */ cBgS_GndChk();
|
|
/* 80267C94 */ virtual ~cBgS_GndChk();
|
|
/* 80267D28 */ void SetPos(cXyz const*);
|
|
/* 80267D0C */ void SetPos(Vec const*);
|
|
/* 80267D44 */ void PreCheck();
|
|
|
|
private:
|
|
/* 0x24 */ cXyz mPosition;
|
|
/* 0x30 */ s32 _30;
|
|
/* 0x34 */ f32 mNowY;
|
|
/* 0x38 */ u32 mWallPrecheck;
|
|
};
|
|
|
|
#endif /* C_BG_S_GND_CHK_H */
|