Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/npcs/npc_test1.h @ 9869

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

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 338 bytes
RevLine 
[5685]1
2#ifndef _NPC_Test1_H
3#define _NPC_Test1_H
4
[6004]5#include "npc.h"
[5685]6
7class AI;
8
[6004]9class NPCTest1 : public NPC {
[9869]10  ObjectListDeclaration(NPCTest1);
[5685]11 public:
12  NPCTest1 ();
[6981]13  virtual ~NPCTest1 ();
[5685]14
15
16  void addAI(AI* ai);
17
18  virtual void tick(float dt);
19
20 private:
21   Vector   randomRotAxis;
22
23   WorldEntity* collider;
24
25};
26
27#endif /* _NPC_Test1_H */
Note: See TracBrowser for help on using the repository browser.