mirror of https://github.com/AxioDL/metaforce.git
24 lines
371 B
C++
24 lines
371 B
C++
#ifndef __URDE_CFLUIDPLANEMANAGER_HPP__
|
|
#define __URDE_CFLUIDPLANEMANAGER_HPP__
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CFluidPlaneManager
|
|
{
|
|
bool x121_;
|
|
class CFluidProfile
|
|
{
|
|
public:
|
|
void Clear();
|
|
};
|
|
static CFluidProfile sProfile;
|
|
public:
|
|
void StartFrame(bool);
|
|
void EndFrame() { x121_ = false; }
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CFLUIDPLANEMANAGER_HPP__
|