blob: c145085ac6da65bfd7a2b8be59c6fc3a5a7a2fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#ifndef D_A_OBJ_INOBONE_H
#define D_A_OBJ_INOBONE_H
#include "d/d_cc_d.h"
#include "f_op/f_op_actor_mng.h"
/**
* @ingroup actors-objects
* @class daObjIBone_c
* @brief Boar Bone
*
* @details
*
*/
class daObjIBone_c : public fopAc_ac_c {
public:
void initBaseMtx();
void setBaseMtx();
int Create();
int CreateHeap();
int create();
int execute();
void setBreakEffect();
int draw();
int _delete();
/* 0x568 */ request_of_phase_process_class mPhase;
/* 0x570 */ J3DModel* mpModel;
/* 0x574 */ dCcD_Stts mStts;
/* 0x5B0 */ dCcD_Cyl mCyl;
/* 0x6EC */ dCcD_Cyl mCyl2;
/* 0x828 */ u8 field_0x828;
/* 0x82C */ Z2SoundObjSimple mSound;
};
STATIC_ASSERT(sizeof(daObjIBone_c) == 0x84c);
#endif /* D_A_OBJ_INOBONE_H */
|