You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
549 B
24 lines
549 B
7 years ago
|
// 02/08/02 November235: Particle System
|
||
|
#pragma once
|
||
|
|
||
|
#include "particlesys.h"
|
||
|
|
||
|
class ParticleSystemManager
|
||
|
{
|
||
|
public:
|
||
|
ParticleSystemManager( void );
|
||
|
~ParticleSystemManager( void );
|
||
|
void AddSystem( ParticleSystem* );
|
||
|
ParticleSystem *FindSystem( cl_entity_t* pEntity );
|
||
|
void UpdateSystems( float frametime );
|
||
|
void ClearSystems( void );
|
||
|
void SortSystems( void );
|
||
|
// void DeleteSystem( ParticleSystem* );
|
||
|
|
||
|
//private:
|
||
|
ParticleSystem* m_pFirstSystem;
|
||
|
//ParticleSystem* systemio;
|
||
|
};
|
||
|
|
||
|
extern ParticleSystemManager* g_pParticleSystems;
|