Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/projectiles/test_bullet.h @ 6624

Last change on this file since 6624 was 6624, checked in by bensch, 18 years ago

orxonox/trunk: Some missing stuff

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