mirror of https://github.com/PrimeDecomp/prime.git
19 lines
317 B
C++
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
|