| 
                Last change
                  on this file since 6410 was
                  6341,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: merged the network branche back to the trunk, so we do not get away from each other to fast 
 
           | 
        
        | 
            File size:
            749 bytes
           | 
      
      
        
  | Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |  * @file ground_turret.h | 
|---|
| 3 |  * @brief description | 
|---|
| 4 | */ | 
|---|
| 5 |  | 
|---|
| 6 | #ifndef _GROUND_TURRET_H | 
|---|
| 7 | #define _GROUND_TURRET_H | 
|---|
| 8 |  | 
|---|
| 9 | #include "npcs/npc.h" | 
|---|
| 10 |  | 
|---|
| 11 | class Weapon; | 
|---|
| 12 |  | 
|---|
| 13 | //! A Class to ... | 
|---|
| 14 | class GroundTurret : public NPC | 
|---|
| 15 | { | 
|---|
| 16 |  | 
|---|
| 17 |  public: | 
|---|
| 18 |   GroundTurret(const TiXmlElement* root = NULL); | 
|---|
| 19 |   virtual ~GroundTurret(); | 
|---|
| 20 |  | 
|---|
| 21 |   void init(); | 
|---|
| 22 |   void loadParams(const TiXmlElement* root); | 
|---|
| 23 |  | 
|---|
| 24 |   virtual void postSpawn (); | 
|---|
| 25 |   virtual void leftWorld (); | 
|---|
| 26 |  | 
|---|
| 27 |  | 
|---|
| 28 |   virtual void draw() const; | 
|---|
| 29 |   virtual void tick(float time); | 
|---|
| 30 |   virtual void collidesWith (WorldEntity* entity, const Vector& location); | 
|---|
| 31 |  | 
|---|
| 32 |   virtual int writeBytes(const byte* data, int length, int sender); | 
|---|
| 33 |   virtual int readBytes(byte* data, int maxLength, int * reciever); | 
|---|
| 34 |  | 
|---|
| 35 |  private: | 
|---|
| 36 |    Weapon *left, *right; | 
|---|
| 37 | }; | 
|---|
| 38 |  | 
|---|
| 39 | #endif /* _GROUND_TURRET_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.