Henrique Gemignani Passos Lima 72ddd3ca89 Add CScriptRipple
Former-commit-id: 44282da01f965e64eb571c64f3c2aa8a58ba52a6
2022-10-16 17:41:14 +03:00

19 lines
317 B
C++

#ifndef _CSCRIPTWATER
#define _CSCRIPTWATER
#include "types.h"
#include "rstl/single_ptr.hpp"
class CFluidPlaneCPU;
class CScriptWater {
uchar x0_pad[0x1b4];
rstl::single_ptr<CFluidPlaneCPU> x1b4_fluidPlane;
public:
CFluidPlaneCPU& FluidPlane() { return *x1b4_fluidPlane; }
};
#endif // _CSCRIPTWATER