Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/particleEngine/src/lib/graphics/partices/particle_engine.h @ 3923

Last change on this file since 3923 was 3923, checked in by bensch, 19 years ago

orxonox/branches/particleEngine: added the particleEngine-class

File size: 457 bytes
RevLine 
[3655]1/*!
[3923]2    \file particle_engine.h
3    \brief Definition of the ParticleEngine
[3655]4*/
5
[3923]6#ifndef _PARTICLE_ENGINE_H
7#define _PARTICLE_ENGINE_H
[3655]8
9#include "base_object.h"
10
[3923]11// FORWARD DEFINITION
[3655]12
13//! A default singleton class.
[3923]14class ParticleEngine : public BaseObject {
[3655]15
16 public:
[3923]17  static ParticleEngine* getInstance(void);
18  virtual ~ParticleEngine(void);
[3655]19
20 private:
[3923]21  ParticleEngine(void);
22  static ParticleEngine* singletonRef;
[3655]23};
24
[3923]25#endif /* _PARTICLE_ENGINE_H */
Note: See TracBrowser for help on using the repository browser.