Rev | Line | |
---|
[10126] | 1 | /*! |
---|
| 2 | * @file heat_particle.h |
---|
| 3 | * @brief A particle system to be used to generate particles that disturb the environment |
---|
| 4 | */ |
---|
| 5 | |
---|
| 6 | #ifndef _HEAT_PARTICLES_H |
---|
| 7 | #define _HEAT_PARTICLES_H |
---|
| 8 | |
---|
| 9 | #include "sprite_particles.h" |
---|
| 10 | |
---|
| 11 | //! A particle system to be used to generate particles that disturb the environment |
---|
| 12 | class HeatParticles : public SpriteParticles |
---|
| 13 | { |
---|
| 14 | ObjectListDeclaration(HeatParticles); |
---|
| 15 | |
---|
| 16 | public: |
---|
| 17 | HeatParticles(const TiXmlElement* root = NULL); |
---|
| 18 | virtual ~HeatParticles(); |
---|
| 19 | |
---|
| 20 | }; |
---|
| 21 | |
---|
[10130] | 22 | #endif /* _HEAT_PARTICLES_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.