Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/world_entities/npcs/npc_test.h @ 10112

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

many AI changes but nothing new

File size: 412 bytes
Line 
1
2#ifndef _NPC22_H
3#define _NPC2_H
4
5#include "npc.h"
6#include "ai_module.h"
7
8class AI;
9class Shader;
10class AIModule;
11
12class NPC2 : public NPC {
13  ObjectListDeclaration(NPC2);
14
15 public:
16  NPC2 (const TiXmlElement* root);
17  virtual ~NPC2 ();
18  virtual void loadParams(const TiXmlElement* root);
19  virtual void tick(float dt);
20
21        int team;
22        int swarm;
23        int difficulty;
24        AIModule* aiModule;
25};
26
27#endif /* _NPC2_H */
Note: See TracBrowser for help on using the repository browser.