Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/world_entities/npcs/npc.h @ 10041

Last change on this file since 10041 was 10041, checked in by tfahrni, 17 years ago

Tried to make some progress with the AI..

File size: 346 bytes
Line 
1
2#ifndef _NPC_H
3#define _NPC_H
4
5#include "world_entity.h"
6#include "ai_team_member.h"
7
8class AI;
9
10class NPC : public AITeamMember {
11  ObjectListDeclaration(NPC);
12 public:
13   NPC (const TiXmlElement* root);
14  virtual ~NPC ();
15
16  virtual void loadParams(const TiXmlElement* root = NULL);
17
18  void addAI(AI* ai);
19
20
21 private:
22
23};
24
25#endif /* _NPC_H */
Note: See TracBrowser for help on using the repository browser.