Line | |
---|
1 | /*! |
---|
2 | * @file hyperblast.h |
---|
3 | * @brief a Hyperblast Projectile |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef _HYPERBLAST_H |
---|
7 | #define _HYPERBLAST_H |
---|
8 | |
---|
9 | #include "projectile.h" |
---|
10 | |
---|
11 | class Vector; |
---|
12 | class Weapon; |
---|
13 | class SparkParticles; |
---|
14 | class ParticleEmitter; |
---|
15 | class FastFactory; |
---|
16 | |
---|
17 | class Hyperblast : public Projectile |
---|
18 | { |
---|
19 | public: |
---|
20 | Hyperblast (); |
---|
21 | virtual ~Hyperblast (); |
---|
22 | |
---|
23 | |
---|
24 | virtual void activate(); |
---|
25 | virtual void deactivate(); |
---|
26 | |
---|
27 | virtual void collidesWith(WorldEntity* entity, const Vector& location); |
---|
28 | |
---|
29 | virtual void destroy (); |
---|
30 | |
---|
31 | virtual void tick (float time); |
---|
32 | virtual void draw () const; |
---|
33 | |
---|
34 | |
---|
35 | private: |
---|
36 | static FastFactory* fastFactory; |
---|
37 | static SparkParticles* explosionParticles; |
---|
38 | |
---|
39 | ParticleEmitter* emitter; |
---|
40 | float size; |
---|
41 | |
---|
42 | WorldEntity* hitEntity; // FIXME TEMPORARY |
---|
43 | }; |
---|
44 | |
---|
45 | #endif /* _HYPERBLAST_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.