mirror of https://github.com/AxioDL/metaforce.git
25 lines
313 B
C++
25 lines
313 B
C++
#include "CFluidPlaneManager.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CFluidPlaneManager::CFluidProfile CFluidPlaneManager::sProfile = {};
|
|
|
|
void CFluidPlaneManager::CFluidProfile::Clear()
|
|
{
|
|
|
|
}
|
|
|
|
void CFluidPlaneManager::StartFrame(bool b)
|
|
{
|
|
x121_ = b;
|
|
sProfile.Clear();
|
|
}
|
|
|
|
void CFluidPlaneManager::Update(float dt)
|
|
{
|
|
|
|
}
|
|
|
|
}
|