source:
orxonox.OLD/branches/ai/src/world_entities/npcs/npc_test.h
@
10126
Last change on this file since 10126 was 10112, checked in by tfahrni, 18 years ago | |
---|---|
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 | |
8 | class AI; |
9 | class Shader; |
10 | class AIModule; |
11 | |
12 | class 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.