Krig Game Engine
StarField.h
Go to the documentation of this file.
1 
7 #ifndef _STAR_FIELD_H_
8 #define _STAR_FIELD_H_
9 
10 #define MAX_STAR_PARTICLES 300
11 
12 #include "ParticleSystem.h"
13 
14 class StarField: public ParticleSystem {
15  public:
16  StarField(Object* tOrigin);
17  ~StarField();
18 
19  void update(const float&);
20  void draw();
21  void init();
22 
23  private:
24  void initParticle(const int&);
25 };
26 
27 #endif
Definition: Object.h:35
Definition: StarField.h:14
Definition: ParticleSystem.h:23
Base class from which all concrete particle systems are derived.