metaforce/Runtime/Particle/CParticleGlobals.cpp

19 lines
573 B
C++
Raw Normal View History

2016-02-05 08:34:14 +00:00
#include "CParticleGlobals.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
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
float CParticleGlobals::g_papValues[8] = { 0.f };
2016-02-14 07:38:01 +00:00
CParticleGlobals::SParticleSystem* CParticleGlobals::g_currentParticleSystem = nullptr;
2016-02-05 08:34:14 +00:00
}