Last change
on this file since 10662 was
10659,
checked in by nicolasc, 17 years ago
|
initial modularisation in spaceship config
|
File size:
765 bytes
|
Line | |
---|
1 | /*! |
---|
2 | * @file plasma_pulse.h |
---|
3 | * @brief Pulsing Plasma projectile |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef _PLASMAPULSE_H |
---|
7 | #define _PLASMAPULSE_H |
---|
8 | |
---|
9 | #include "projectile.h" |
---|
10 | #include "effects/billboard.h" |
---|
11 | #include "effects/blink.h" |
---|
12 | |
---|
13 | class Vector; |
---|
14 | class Weapon; |
---|
15 | class FastFactory; |
---|
16 | class Wobblegrid; |
---|
17 | |
---|
18 | class PlasmaPulse : public Projectile |
---|
19 | { |
---|
20 | ObjectListDeclaration(PlasmaPulse); |
---|
21 | public: |
---|
22 | PlasmaPulse (); |
---|
23 | virtual ~PlasmaPulse (); |
---|
24 | |
---|
25 | virtual void activate(); |
---|
26 | virtual void deactivate(); |
---|
27 | |
---|
28 | virtual void destroy (WorldEntity* killer); |
---|
29 | |
---|
30 | virtual void tick (float dt); |
---|
31 | virtual void draw () const; |
---|
32 | |
---|
33 | private: |
---|
34 | static FastFactory* fastFactory; |
---|
35 | Billboard* grid; |
---|
36 | // Blink* blink; |
---|
37 | }; |
---|
38 | |
---|
39 | #endif /* _PLASMAPULSE_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.