Files
tp/include/SSystem/SComponent/c_bg_s_lin_chk.h
T
e915df66c8 move d_a_alink and some related stuff (#130)
* clean up d_a_player

* move some of daalink

* more daalink / daplayer

* setup some daalink members

* rest of daalink members setup

* remove comment

* few more matches

* remove asm

* more matches

* more matches + move e_wb_class

* fix some d_save classes

Co-authored-by: lepelog <lepelog@users.noreply.github.com>
2021-05-23 12:09:59 +02:00

32 lines
797 B
C++

#ifndef C_BG_S_LIN_CHK_H
#define C_BG_S_LIN_CHK_H
#include "SSystem/SComponent/c_bg_s_chk.h"
#include "SSystem/SComponent/c_bg_s_poly_info.h"
#include "SSystem/SComponent/c_m3d_g_lin.h"
#include "SSystem/SComponent/c_xyz.h"
#include "dolphin/types.h"
class cBgS_LinChk {
private:
/* 0x000 */ cBgS_Chk mChk;
/* 0x014 */ cBgS_PolyInfo mPolyInfo;
/* 0x024 */ cM3dGLin mLin;
/* 0x040 */ cXyz field_0x40;
/* 0x04C */ int field_0x4c;
/* 0x050 */ u8 mPreWallChk;
/* 0x051 */ u8 mPreGroundChk;
/* 0x052 */ u8 mPreRoofChk;
/* 0x053 */ u8 mFrontFlag;
/* 0x054 */ u8 mBackFlag;
public:
cBgS_LinChk(void);
~cBgS_LinChk(void);
void ct(void);
void Set2(const cXyz*, const cXyz*, unsigned int);
void PreCalc(void);
};
#endif /* C_BG_S_LIN_CHK_H */