Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/world_entities/npc.h @ 5064

Last change on this file since 5064 was 5059, checked in by bensch, 19 years ago

orxonox/trunk: cool raotating ships

File size: 333 bytes
RevLine 
[1853]1
[3224]2#ifndef _NPC_H
3#define _NPC_H
[1853]4
[2036]5#include "world_entity.h"
[1853]6
[2036]7class AI;
[1904]8
[2036]9class NPC : public WorldEntity {
[1853]10
11 public:
12  NPC ();
13  ~NPC ();
14
[1899]15
[4977]16  void addAI(AI* ai);
[1899]17
[5029]18  virtual void tick(float dt);
[1858]19
[5029]20  virtual void collidesWith (WorldEntity* entity, const Vector& location);
21
22
[1858]23 private:
[5059]24   Vector   randomRotAxis;
[5029]25
[1858]26;
27
[1853]28};
29
[3224]30#endif /* _NPC_H */
Note: See TracBrowser for help on using the repository browser.