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


            






