Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: Some missing stuff

File size: 883 bytes
RevLine 
[4890]1/*!
[3708]2    \projectile.h
[4836]3  *  a projectile, that is been shooted by a weapon
[3708]4*/
5
[3709]6#ifndef _TEST_BULLET_H
7#define _TEST_BULLET_H
[3708]8
[3710]9#include "projectile.h"
[3708]10
11class Vector;
12class Weapon;
[6622]13class SpriteParticles;
[5443]14class ParticleEmitter;
[5447]15class FastFactory;
[3708]16
[4890]17class TestBullet : public Projectile
[3708]18{
[5443]19  public:
20    TestBullet ();
21    virtual ~TestBullet ();
[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  private:
[5447]35    static FastFactory*               fastFactory;
[6622]36    static SpriteParticles*           trailParticles;
37    static SpriteParticles*           explosionParticles;
[5443]38
[5447]39    ParticleEmitter*                  emitter;
40
41
42    WorldEntity* hitEntity; // FIXME TEMPORARY
43
[3708]44};
45
[3709]46#endif /* _TEST_BULLET_H */
Note: See TracBrowser for help on using the repository browser.