mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-01 09:47:24 -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.
30 lines
560 B
C++
30 lines
560 B
C++
#ifndef D_A_FIRE_H
|
|
#define D_A_FIRE_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daFire_c : public fopAc_ac_c {
|
|
public:
|
|
bool _delete();
|
|
void CreateInit();
|
|
s32 _create();
|
|
bool _execute();
|
|
void search_wind();
|
|
void ctrlEffect();
|
|
void demo_proc();
|
|
void normal_proc();
|
|
void eventOrder();
|
|
void checkOrder();
|
|
void execStopFire();
|
|
void execStopNowFire();
|
|
void execPlayFire();
|
|
void setDirParticle(cXyz*);
|
|
void checkCol();
|
|
bool _draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_FIRE_H */
|