| 
                Last change
                  on this file since 5143 was
                  4932,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: factory optimisations 
 
           | 
        
        | 
            File size:
            390 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 |  | 
|---|
| 11 | class Vector; | 
|---|
| 12 | class Weapon; | 
|---|
| 13 |  | 
|---|
| 14 | class TestBullet : public Projectile | 
|---|
| 15 | { | 
|---|
| 16 |  public: | 
|---|
| 17 |   TestBullet (); | 
|---|
| 18 |   virtual ~TestBullet (); | 
|---|
| 19 |  | 
|---|
| 20 |   virtual void destroy (); | 
|---|
| 21 |  | 
|---|
| 22 |   virtual void tick (float time); | 
|---|
| 23 |   virtual void draw (); | 
|---|
| 24 |  | 
|---|
| 25 | }; | 
|---|
| 26 |  | 
|---|
| 27 | #endif /* _TEST_BULLET_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.