mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-13 21:55:34 -04:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
#ifndef D_A_OBJ_TIDE_H
|
|
#define D_A_OBJ_TIDE_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
namespace daObjTide {
|
|
class Act_c : public fopAc_ac_c {
|
|
public:
|
|
void CreateHeap();
|
|
void Create();
|
|
void Mthd_Create();
|
|
void Delete();
|
|
void Mthd_Delete();
|
|
void set_mtx();
|
|
void init_mtx();
|
|
void move_to_aim(float, bool);
|
|
void chk_demo_rescue() const;
|
|
void gmtw_demo_up_start() const;
|
|
void mode_norm_init();
|
|
void mode_norm();
|
|
void mode_gmtw_pre_init();
|
|
void mode_gmtw_pre();
|
|
void mode_gmtw_init();
|
|
void mode_gmtw();
|
|
void mode_gmtw_demo_init();
|
|
void mode_gmtw_demo();
|
|
void se_init_gmtw();
|
|
void se_set_gmtw();
|
|
void se_start_gopo();
|
|
void se_start_out();
|
|
void se_start_up();
|
|
void se_stop_gopo();
|
|
void se_stop_out();
|
|
void se_stop_up();
|
|
void se_pos_up();
|
|
void Execute(float(**)[3][4]);
|
|
void Draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
};
|
|
|
|
#endif /* D_A_OBJ_TIDE_H */
|