blob: c92146f5af5dd3c4e2cc2a577425a1c9a859e12a (
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
|
#ifndef D_A_OBJ_SUISYA_H
#define D_A_OBJ_SUISYA_H
#include "f_op/f_op_actor_mng.h"
#include "d/d_bg_s_acch.h"
/**
* @ingroup actors-objects
* @class daObj_Suisya_c
* @brief Water Wheel
*
* @details
*
*/
class daObj_Suisya_c : public fopAc_ac_c {
public:
int draw();
int execute();
int _delete();
int CreateHeap();
int create();
private:
/* 0x568 */ request_of_phase_process_class mPhase;
/* 0x570 */ J3DModel* mpModel;
/* 0x574 */ u32 mShadowKey;
/* 0x578 */ dBgS_AcchCir mAcchCir;
/* 0x5B8 */ dBgS_ObjAcch mAcch;
};
STATIC_ASSERT(sizeof(daObj_Suisya_c) == 0x790);
#endif /* D_A_OBJ_SUISYA_H */
|