2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:07:42 +00:00

Implement CParticleElectricDataFactory

This commit is contained in:
2016-02-12 22:25:29 -08:00
parent acf65c561a
commit 5349db23ad
5 changed files with 165 additions and 3 deletions

View File

@@ -63,9 +63,11 @@ class CMVEBounce : public CModVectorElement
std::unique_ptr<CRealElement> xc_c;
std::unique_ptr<CRealElement> x10_d;
bool x14_e;
bool x15_f;
Zeus::CVector3f x18_g;
float x24_j;
public:
CMVEBounce(CVectorElement* a, CVectorElement* b, CRealElement* c, CRealElement* d, bool e)
: x4_a(a), x8_b(b), xc_c(c), x10_d(d), x14_e(e) {}
CMVEBounce(CVectorElement* a, CVectorElement* b, CRealElement* c, CRealElement* d, bool e);
bool GetValue(int frame, Zeus::CVector3f& pVel, Zeus::CVector3f& pPos) const;
};