Files
tp/include/SComponent/c_bg_s_poly_info.h
T

25 lines
569 B
C++
Raw Normal View History

2020-12-25 18:03:10 -08:00
#ifndef C_BG_S_POLY_INFO_H_
#define C_BG_S_POLY_INFO_H_
2021-01-07 02:04:53 +01:00
#include "global.h"
class cBgS_PolyInfo {
2021-01-26 23:48:47 +01:00
private:
/* 0x00 */ u16 mPolyIndex;
/* 0x02 */ u16 unk_0x02;
/* 0x04 */ void* unk_0x04;
/* 0x08 */ u32 unk_0x08;
2021-01-07 02:04:53 +01:00
public:
cBgS_PolyInfo(void);
2021-01-26 23:48:47 +01:00
virtual ~cBgS_PolyInfo(void);
2021-01-07 02:04:53 +01:00
bool ChkSetInfo(void) const;
void ClearPi(void);
void SetPolyInfo(const cBgS_PolyInfo&);
void SetActorInfo(int, void*, unsigned int);
bool ChkSafe(const void*, unsigned int) const;
void SetPolyIndex(int);
bool ChkBgIndex(void) const;
};
2020-12-25 18:03:10 -08:00
#endif