blob: fdf7b204dcba4917029be94e09ad8729f7464acb (
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_OBJ_LV3WATEREFF_H
#define D_A_OBJ_LV3WATEREFF_H
#include "f_op/f_op_actor_mng.h"
/**
* @ingroup actors-objects
* @class daObjWaterEff_c
* @brief Room 09 Water
*
* @details
*
*/
class daObjWaterEff_c : public fopAc_ac_c {
public:
int Create();
int create();
int execute();
int _delete();
private:
/* 0x568 */ cXyz mSePositions[2];
/* 0x580 */ JPABaseEmitter* mParticles[4];
/* 0x590 */ u8 unused_0x590[0x594 - 0x590];
};
STATIC_ASSERT(sizeof(daObjWaterEff_c) == 0x594);
#endif /* D_A_OBJ_LV3WATEREFF_H */
|