blob: 90abc72ce4302c6e47d6fa0e6e6610f9a8c9ae0a (
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
|
#ifndef D_A_ICELIFT_H
#define D_A_ICELIFT_H
#include "f_op/f_op_actor.h"
class daIlift_c : public fopAc_ac_c {
public:
bool _delete();
void CreateHeap();
void CreateInit();
cPhs_State _create();
void set_mtx();
bool _execute();
void lift_wave();
void path_move();
void lift_normal_move();
void set_next_pnt();
bool _draw();
public:
/* Place member variables here */
};
#endif /* D_A_ICELIFT_H */
|