blob: 72d3d4e1dc19e4e6a2441378839c919c694d8af5 (
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
39
40
41
42
43
44
45
46
47
48
49
50
|
#ifndef D_A_L7DEMO_DR_H
#define D_A_L7DEMO_DR_H
#include "f_op/f_op_actor_mng.h"
/**
* @ingroup actors-unsorted
* @class daDr_c
* @brief
*
* @details
*
*/
class daDr_c : public fopAc_ac_c {
public:
typedef void (daDr_c::*actionFn)();
void setAction(actionFn);
void action();
void mtx_set();
int draw();
void wait();
void pl_walk();
void pl_turn();
void bridge_destroy();
void bridge_destroy2();
int execute();
int _delete();
int CreateHeap();
BOOL check_start();
int create();
/* 0x568 */ request_of_phase_process_class mPhase;
/* 0x570 */ mDoExt_McaMorfSO* mpModelMorf;
/* 0x574 */ Z2CreatureEnemy mSound;
/* 0x618 */ cXyz field_0x618;
/* 0x624 */ cXyz mDemoCamEye;
/* 0x630 */ cXyz mDemoCamCenter;
/* 0x63C */ actionFn mAction;
/* 0x648 */ actionFn mPrevAction;
/* 0x654 */ int field_0x654;
/* 0x658 */ u8 mIsHide;
/* 0x659 */ u8 mTimer;
/* 0x65A */ u8 field_0x65a;
};
STATIC_ASSERT(sizeof(daDr_c) == 0x65c);
#endif /* D_A_L7DEMO_DR_H */
|