metaforce/Runtime/Particle/CParticleGlobals.cpp

20 lines
655 B
C++
Raw Normal View History

2016-02-05 08:34:14 +00:00
#include "CParticleGlobals.hpp"
2016-02-13 09:02:47 +00:00
namespace pshag
2016-02-05 08:34:14 +00:00
{
2016-02-09 22:52:33 +00:00
int CParticleGlobals::g_EmitterTime = 0;
float CParticleGlobals::g_EmitterTimeReal = 0.0;
2016-02-05 08:34:14 +00:00
2016-02-09 22:52:33 +00:00
int CParticleGlobals::g_ParticleLifetime = 0;
float CParticleGlobals::g_ParticleLifetimeReal = 0.0;
2016-02-05 08:34:14 +00:00
2016-02-09 22:52:33 +00:00
int CParticleGlobals::g_ParticleLifetimePercentage = 0;
float CParticleGlobals::g_ParticleLifetimePercentageReal = 0.0;
float CParticleGlobals::g_ParticleLifetimePercentageRemainder = 0.0;
2016-02-05 08:34:14 +00:00
2016-02-06 07:31:53 +00:00
float* CParticleGlobals::g_papValues = nullptr;
CParticleGlobals::SParticleMetrics* CParticleGlobals::g_particleMetrics = nullptr;
2016-02-14 07:38:01 +00:00
CParticleGlobals::SParticleSystem* CParticleGlobals::g_currentParticleSystem = nullptr;
2016-02-05 08:34:14 +00:00
}