mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-12 09:45:51 +00:00
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__
|