summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_alldie.h
blob: 8422c5156ff996a095c18774691dc73f8f6a1693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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 */