Files
tww/include/d/d_point_wind.h
2026-04-01 18:58:31 -04:00

20 lines
501 B
C++

#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 */