summaryrefslogtreecommitdiff
path: root/include/d/actor/d_a_obj_smoke.h
blob: 61a3b56a51ed56e645a6e8e73a2a50b93003b1c1 (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
30
31
32
33
#ifndef D_A_OBJ_SMOKE_H
#define D_A_OBJ_SMOKE_H

#include "d/d_com_inf_game.h"

/**
 * @ingroup actors-objects
 * @class daObjSmoke_c
 * @brief Elde Inn Stove Smoke
 *
 * @details
 *
 */
class daObjSmoke_c : public fopAc_ac_c {
public:
    u8 getSwbit() {
        return fopAcM_GetParamBit(this,0,8);
    }

    void initBaseMtx();
    void setBaseMtx();
    int Create();
    int create();
    int execute();
    int _delete();

private:
    /* 0x568 */ JPABaseEmitter* mParticle;
};

STATIC_ASSERT(sizeof(daObjSmoke_c) == 0x56C);

#endif /* D_A_OBJ_SMOKE_H */