1
0
forked from 0ad/0ad
0ad/source/tools/ape/ext/ParticleSystem.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

32 lines
589 B
C++

/*==================================================================
|
| Name: ParticleSystem.h
|
|===================================================================
|
==================================================================*/
#ifndef PARTICLE_SYSTEM_H
#define PARTICLE_SYSTEM_H
#include "ParticleEmitter.h"
#include <vector>
class CParticleSystem
{
public:
CParticleSystem();
~CParticleSystem();
void Render();
void Update();
void Frame();
CParticleEmitter *CreateNewEmitter();
private:
std::vector<CParticleEmitter *> m_Emitters;
};
#endif // PARTICLE_SYSTEM_H