Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/world_entities/src/world_entities/weapons/ground_turret.h @ 5685

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

orxonox/world_entities: world_entities are in a seperate Directory now

File size: 575 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//! A Class to ...
12class GroundTurret : public NPC
13{
14
15 public:
16  GroundTurret(const TiXmlElement* root = NULL);
17  virtual ~GroundTurret();
18
19  void loadParams(const TiXmlElement* root);
20  void init();
21
22  virtual void postSpawn ();
23  virtual void leftWorld ();
24
25
26  virtual void draw() const;
27//  virtual void tick(float time);
28  virtual void collidesWith (WorldEntity* entity, const Vector& location);
29
30 private:
31
32};
33
34#endif /* _GROUND_TURRET_H */
Note: See TracBrowser for help on using the repository browser.