2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 17:47:43 +00:00

Better storage mechanism for reserved_vector with proper alignment

This commit is contained in:
Jack Andersen
2017-09-18 10:29:59 -10:00
parent 801938c844
commit 7d125e504a
2 changed files with 113 additions and 5 deletions

View File

@@ -34,6 +34,10 @@ class CRainSplashGenerator
zeus::CVector3f x64_pos;
float x70_ = 0.f;
explicit SRainSplash(boo::IGraphicsDataFactory::Context& ctx);
SRainSplash(const SRainSplash&) = delete;
SRainSplash& operator=(const SRainSplash&) = delete;
SRainSplash(SRainSplash&&) = default;
SRainSplash& operator=(SRainSplash&&) = default;
void Update(float dt, CStateManager& mgr);
bool IsActive() const;
void Draw(float alpha, float dt, const zeus::CVector3f& pos) const;