Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
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.
 
 
 
 
 
 

23 lines
549 B

// 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;