Last change
on this file since 10651 was
10648,
checked in by nicolasc, 18 years ago
|
some additional weapons, started weapons cleanup
|
File size:
690 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 | |
---|
12 | class Vector; |
---|
13 | class Weapon; |
---|
14 | class FastFactory; |
---|
15 | class Wobblegrid; |
---|
16 | |
---|
17 | class PlasmaPulse : public Projectile |
---|
18 | { |
---|
19 | ObjectListDeclaration(PlasmaPulse); |
---|
20 | public: |
---|
21 | PlasmaPulse (); |
---|
22 | virtual ~PlasmaPulse (); |
---|
23 | |
---|
24 | virtual void activate(); |
---|
25 | virtual void deactivate(); |
---|
26 | |
---|
27 | virtual void destroy (WorldEntity* killer); |
---|
28 | |
---|
29 | virtual void tick (float dt); |
---|
30 | virtual void draw () const; |
---|
31 | |
---|
32 | private: |
---|
33 | static FastFactory* fastFactory; |
---|
34 | Billboard* grid; |
---|
35 | }; |
---|
36 | |
---|
37 | #endif /* _PLASMAPULSE_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.