2023-08-23 18:40:37 +03:00
|
|
|
#ifndef D_BG_D_BG_S_CAPT_POLY_H
|
|
|
|
|
#define D_BG_D_BG_S_CAPT_POLY_H
|
|
|
|
|
|
2024-10-10 07:29:58 -07:00
|
|
|
#include "d/d_bg_s_chk.h"
|
2025-11-23 18:23:44 -05:00
|
|
|
#include "SSystem/SComponent/c_m3d_g_aab.h"
|
2023-08-23 18:40:37 +03:00
|
|
|
|
|
|
|
|
struct dBgS_CaptPoly;
|
|
|
|
|
|
|
|
|
|
typedef void (*CaptPolyCallback)(dBgS_CaptPoly&, cBgD_Vtx_t*, u16, u16, u16, cM3dGPla*);
|
|
|
|
|
|
|
|
|
|
struct dBgS_CaptPoly : public cBgS_Chk, public dBgS_Chk {
|
|
|
|
|
public:
|
|
|
|
|
cM3dGAab* GetBndP() { return &m_pos;}
|
|
|
|
|
|
|
|
|
|
/* 0x2C */ cM3dGAab m_pos;
|
|
|
|
|
/* 0x48 */ CaptPolyCallback m_callback;
|
|
|
|
|
};
|
|
|
|
|
|
2025-11-23 18:23:44 -05:00
|
|
|
#endif
|