Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/heathaze/src/world_entities/particles/heat_particle.h @ 10126

Last change on this file since 10126 was 10126, checked in by snellen, 17 years ago

added HeatParticles class

File size: 660 bytes
Line 
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 "world_entity.h"
10#include "sprite_particles.h"
11
12//! A particle system to be used to generate particles that disturb the environment
13class HeatParticles : public SpriteParticles
14{
15 ObjectListDeclaration(HeatParticles);
16
17 public:
18  HeatParticles(const TiXmlElement* root = NULL);
19  virtual ~HeatParticles();
20
21  virtual void loadParams(const TiXmlElement* root);
22  void init();
23
24  virtual void draw() const;
25  virtual void tick(float time);
26
27};
28
29#endif /* _HEAT_PARTICLES_H */
Note: See TracBrowser for help on using the repository browser.