Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/playability/src/world_entities/projectiles/mbolt.h @ 9999

Last change on this file since 9999 was 9999, checked in by marcscha, 17 years ago

added missing mbolt

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