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