2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 14:27:42 +00:00

All real elements implemented

This commit is contained in:
Jack Andersen
2016-02-05 21:31:53 -10:00
parent c8abcad283
commit 8fbe6a953c
9 changed files with 259 additions and 50 deletions

View File

@@ -1,6 +1,8 @@
#ifndef __RETRO_CPARTICLEGLOBALS_HPP__
#define __RETRO_CPARTICLEGLOBALS_HPP__
#include "CVector3f.hpp"
namespace Retro
{
@@ -33,6 +35,18 @@ public:
g_particleLifetimePercentTweenInt = g_particleLifetimePercentTweenFloat;
g_particleLifetimePercentTweenIntFloatRem = g_particleLifetimePercentTweenFloat - g_particleLifetimePercentTweenInt;
}
static float* g_papValues;
struct SParticleMetrics
{
Zeus::CVector3f x0_ploc;
Zeus::CVector3f x10_plco;
Zeus::CVector3f x1c_pvel;
float x2c_psll;
float x30_prlw;
};
static SParticleMetrics* g_particleMetrics;
};
}