prime/include/MetroidPrime/ScriptObjects/CScriptWater.hpp

20 lines
324 B
C++
Raw Normal View History

2022-10-16 14:41:14 +00:00
#ifndef _CSCRIPTWATER
#define _CSCRIPTWATER
#include "types.h"
#include "rstl/single_ptr.hpp"
class CFluidPlaneCPU;
class CScriptWater {
2022-10-30 19:47:50 +00:00
public:
CFluidPlaneCPU& FluidPlane() { return *x1b4_fluidPlane; }
2022-10-16 14:41:14 +00:00
2022-10-30 19:47:50 +00:00
private:
uchar x0_pad[0x1b4];
rstl::single_ptr< CFluidPlaneCPU > x1b4_fluidPlane;
2022-10-16 14:41:14 +00:00
};
#endif // _CSCRIPTWATER