mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-31 12:55:34 +00:00
12 lines
266 B
C++
12 lines
266 B
C++
#ifndef _CPARTICLEGLOBALS
|
|
#define _CPARTICLEGLOBALS
|
|
|
|
class CParticleGlobals {
|
|
public:
|
|
static void SetEmitterTime(int time);
|
|
static void SetParticleLifetime(int lifetime);
|
|
static void UpdateParticleLifetimeTweenValues(int time);
|
|
};
|
|
|
|
#endif // _CPARTICLEGLOBALS
|