mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-16 22:40:12 -04:00
025b7e459a
It's not completely consistent, but it seems like the majority used `bool`, and only a handful used `BOOL`. So I switched all of them to `bool` except for 13 TUs that stopped matching when changed like this.
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
#ifndef D_A_OBJ_SHMRGRD_H
|
|
#define D_A_OBJ_SHMRGRD_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class J3DNode;
|
|
|
|
class daObjShmrgrd_c : public fopAc_ac_c {
|
|
public:
|
|
void get_mode() {}
|
|
void is_switch() const {}
|
|
void on_switch() const {}
|
|
void prm_get_swSave() const {}
|
|
|
|
daObjShmrgrd_c();
|
|
void solidHeapCB(fopAc_ac_c*);
|
|
void create_heap();
|
|
s32 _create();
|
|
bool _delete();
|
|
void search_target_next(daObjShmrgrd_c*);
|
|
void register_list();
|
|
void leave_list();
|
|
void search_gap();
|
|
void set_gap_co();
|
|
void init_mtx();
|
|
void set_mtx();
|
|
void check_player_angle(fopAc_ac_c*);
|
|
void set_damage();
|
|
void vib_start(short, float);
|
|
void vib_proc();
|
|
void crush_start();
|
|
void crush_proc();
|
|
void eff_crush();
|
|
void calc_top_pos();
|
|
static BOOL jnodeCB(J3DNode*, int);
|
|
void mode_upper_init();
|
|
void mode_upper();
|
|
void mode_u_l_init();
|
|
void mode_u_l();
|
|
void mode_lower_init();
|
|
void mode_lower();
|
|
bool _execute();
|
|
bool _draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_OBJ_SHMRGRD_H */
|