metaforce/Runtime/Particle/CParticleGlobals.cpp

18 lines
625 B
C++
Raw Normal View History

2016-02-05 08:34:14 +00:00
#include "CParticleGlobals.hpp"
2018-12-08 05:30:43 +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
2017-06-04 01:01:09 +00:00
const std::array<float, 8>* CParticleGlobals::g_particleAccessParameters = nullptr;
2016-02-14 07:38:01 +00:00
CParticleGlobals::SParticleSystem* CParticleGlobals::g_currentParticleSystem = nullptr;
2018-12-08 05:30:43 +00:00
} // namespace urde