summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_atdoor.h
blob: 8b86c2ea4ffbefc52f2c6c280f474514db1a319f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef D_A_ATDOOR_H
#define D_A_ATDOOR_H

#include "f_op/f_op_actor.h"
#include "d/d_bg_w.h"

class daAtdoor_c : public fopAc_ac_c {
public:
    inline BOOL draw();
    inline BOOL execute();
    void setAction(u8 action) { mAction = action; }

    u8 getSwbit();
    BOOL CreateHeap();
    void calcMtx();
    bool CreateInit();
    cPhs_State create();

    static const char M_arcname[];

public:
    /* 0x290 */ request_of_phase_process_class mPhase;
    /* 0x298 */ J3DModel* mpModel;
    /* 0x29C */ dBgW* mpBgW;
    /* 0x2A0 */ u8 mAction;
    /* 0x2A2 */ s16 unk_2A2;
}; // size = 0x2A4

#endif /* D_A_ATDOOR_H */