Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/presentation/src/world_entities/npcs/attractor_mine.h @ 9175

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

better stuff

File size: 515 bytes
RevLine 
[1853]1
[9173]2#ifndef _ATTRACTOR_MINE_H
3#define _ATTRACTOR_MINE_H
[1853]4
[6004]5#include "npc.h"
[1853]6
[2036]7class AI;
[5266]8class Shader;
[1904]9
[9173]10class AttractorMine : public NPC {
[1853]11
12 public:
[9173]13  AttractorMine (const TiXmlElement* root);
14  virtual ~AttractorMine ();
[1853]15
[9161]16  virtual void loadParams(const TiXmlElement* root);
[1899]17
[4977]18  void addAI(AI* ai);
[1899]19
[9164]20  virtual void destroy(WorldEntity* killer);
21
[5029]22  virtual void tick(float dt);
[5500]23  virtual void draw() const;
[1858]24
25 private:
[5059]26   Vector   randomRotAxis;
[5266]27   Shader*  shader;
[9175]28
29   Vector   velocity;
[1853]30};
31
[9173]32#endif /* _ATTRACTOR_MINE_H */
Note: See TracBrowser for help on using the repository browser.