Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/particles/dot_particles.h @ 6693

Last change on this file since 6693 was 6693, checked in by patrick, 18 years ago

branches: removed spaceshipcontrol branche

File size: 804 bytes
Line 
1/*!
2 * @file dot_particles.h
3
4*/
5
6#ifndef _DOT_PARTICLE_SYSTEM_H
7#define _DOT_PARTICLE_SYSTEM_H
8
9#include "particle_system.h"
10#include "material.h"
11
12//! A class to handle ParticleSystems
13class DotParticles : public ParticleSystem
14{
15
16public:
17  DotParticles(unsigned int maxCount = PARTICLE_DEFAULT_MAX_COUNT);
18  DotParticles(const TiXmlElement* root);
19  virtual ~DotParticles();
20
21  virtual void loadParams(const TiXmlElement* root);
22
23  void setMaterialTexture(const char* textureFile);
24
25  /** @returns the Material that lies on this particles */
26  inline const Material* getMaterial() const { return &this->material; };
27
28  virtual void draw() const;
29
30private:
31  void init();
32
33private:
34  Material          material;            //!< A Material for all the Particles.
35};
36
37#endif /* _DOT_PARTICLE_SYSTEM_H */
Note: See TracBrowser for help on using the repository browser.