blob: 0c6721ba36aa4a51485ca047b88a094fdd60f8e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef D_POINT_WIND_H
#define D_POINT_WIND_H
#include "SSystem/SComponent/c_m3d_g_cps.h"
#include "d/d_kankyo.h"
class dPointWind_c {
public:
/* 0x00 */ cM3dGCpsS * mpCps;
/* 0x04 */ WIND_INFLUENCE mWind;
void set_pwind_init(cM3dGCpsS * pCps);
void set_pwind_power(float windStrength){ mWind.mStrength = windStrength; }
float get_pwind_power_p() { return mWind.mStrength; }
void set_pwind_move();
void set_pwind_delete();
}; // Size: 0x30
#endif /* D_POINT_WIND_H */
|