mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-25 17:24:35 -04:00
23 lines
432 B
C++
23 lines
432 B
C++
#ifndef D_A_ALLDIE_H
|
|
#define D_A_ALLDIE_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daAlldie_c : public fopAc_ac_c {
|
|
public:
|
|
inline cPhs_State create();
|
|
inline BOOL draw();
|
|
void setActio(u8 action) { mAction = action; }
|
|
|
|
u8 getSwbit();
|
|
BOOL actionWait();
|
|
BOOL actionCheck();
|
|
BOOL actionTimer();
|
|
BOOL execute();
|
|
public:
|
|
/* 0x290 */ u8 mAction;
|
|
/* 0x292 */ s16 mTimer;
|
|
};
|
|
|
|
#endif /* D_A_ALLDIE_H */
|