source:
orxonox.OLD/trunk/src/world_entities/projectiles/laser.h
@
10528
Last change on this file since 10528 was 9869, checked in by bensch, 18 years ago | |
---|---|
File size: 850 bytes |
Rev | Line | |
---|---|---|
[4890] | 1 | /*! |
[5456] | 2 | * @file laser.h |
3 | * @brief a projectile, that is been shooted by a weapon | |
[3708] | 4 | */ |
5 | ||
[5456] | 6 | #ifndef _LASER_H |
7 | #define _LASER_H | |
[3708] | 8 | |
[3710] | 9 | #include "projectile.h" |
[3708] | 10 | |
11 | class Vector; | |
12 | class Weapon; | |
[6622] | 13 | class SpriteParticles; |
[5443] | 14 | class ParticleEmitter; |
[5447] | 15 | class FastFactory; |
[3708] | 16 | |
[5456] | 17 | class Laser : public Projectile |
[3708] | 18 | { |
[9869] | 19 | ObjectListDeclaration(Laser); |
[5443] | 20 | public: |
[5456] | 21 | Laser (); |
22 | virtual ~Laser (); | |
[3708] | 23 | |
24 | ||
[5443] | 25 | virtual void activate(); |
26 | virtual void deactivate(); | |
[4890] | 27 | |
[5443] | 28 | virtual void collidesWith(WorldEntity* entity, const Vector& location); |
29 | ||
[9235] | 30 | virtual void destroy (WorldEntity* killer); |
[5443] | 31 | |
[6056] | 32 | virtual void tick (float dt); |
[5500] | 33 | virtual void draw () const; |
[5443] | 34 | |
35 | ||
36 | private: | |
[5447] | 37 | static FastFactory* fastFactory; |
[5456] | 38 | |
[6622] | 39 | static SpriteParticles* explosionParticles; |
[5443] | 40 | |
[5447] | 41 | ParticleEmitter* emitter; |
42 | ||
43 | ||
44 | WorldEntity* hitEntity; // FIXME TEMPORARY | |
[3708] | 45 | }; |
46 | ||
[5456] | 47 | #endif /* _LASER_H */ |
Note: See TracBrowser
for help on using the repository browser.