mirror of https://github.com/PrimeDecomp/prime.git
12 lines
287 B
C++
12 lines
287 B
C++
|
#ifndef __CPARTICLEGLOBALS_HPP__
|
||
|
#define __CPARTICLEGLOBALS_HPP__
|
||
|
|
||
|
class CParticleGlobals {
|
||
|
public:
|
||
|
static void SetEmitterTime(int time);
|
||
|
static void SetParticleLifetime(int lifetime);
|
||
|
static void UpdateParticleLifetimeTweenValues(int time);
|
||
|
};
|
||
|
|
||
|
#endif // __CPARTICLEGLOBALS_HPP__
|