Files
tp/include/d/d_insect.h
T

45 lines
1.0 KiB
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef D_D_INSECT_H
#define D_D_INSECT_H
2022-12-26 10:55:53 -07:00
#include "f_op/f_op_actor.h"
class dInsect_c : public fopAc_ac_c {
public:
2024-02-28 04:41:16 -05:00
enum Sex {
/* 0 */ SEX_MALE,
/* 1 */ SEX_FEMALE,
};
enum Location {
/* 0 */ LOC_OUTSIDE,
/* 1 */ LOC_AGITHA,
/* 2 */ LOC_UNK_2,
};
2023-02-10 09:07:47 -08:00
/* 8015E010 */ dInsect_c();
/* 8015E078 */ void Insect_GetDemoMain();
/* 8015E26C */ void CalcZBuffer(f32);
/* 80110648 */ virtual void Insect_Release() { field_0x56C = 1; }
2024-02-28 04:41:16 -05:00
bool ChkGetDemo() { return m_mode > 0; }
2023-02-10 09:07:47 -08:00
2024-02-28 04:41:16 -05:00
protected:
2022-12-26 10:55:53 -07:00
/* 0x56C */ u8 field_0x56C;
2024-02-28 04:41:16 -05:00
/* 0x56D */ bool mDraw;
/* 0x570 */ u32 mParticleKey1;
/* 0x574 */ u32 mParticleKey2;
2022-12-26 10:55:53 -07:00
/* 0x578 */ u32 field_0x578;
/* 0x57C */ f32 field_0x57C;
2023-02-10 09:07:47 -08:00
/* 0x580 */ u8 m_itemNo;
2024-02-28 04:41:16 -05:00
/* 0x581 */ u8 mSex;
2023-02-10 09:07:47 -08:00
/* 0x582 */ s16 m_saveBitNo;
2022-12-26 10:55:53 -07:00
/* 0x584 */ u8 field_0x584;
/* 0x585 */ u8 field_0x585;
/* 0x586 */ u8 field_0x586[2];
2023-02-10 09:07:47 -08:00
/* 0x588 */ u32 m_itemId;
/* 0x58C */ int m_mode;
2022-12-26 10:55:53 -07:00
};
2021-03-28 22:49:05 +02:00
#endif /* D_D_INSECT_H */