Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/ai/ai_team_member.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: 357 bytes
Line 
1
2#ifndef _AI_TEAM_MEMBER_H
3#define _AI_TEAM_MEMBER_H
4
5#include "world_entity.h"
6#include "ai_module.h"
7
8
9class AITeamMember : public WorldEntity{
10 public:
11   AITeamMember();
12   ~AITeamMember();
13
14   void process();
15   void addToTeam(int);
16   void addModule(AIModule*);
17 private:
18   std::vector<AIModule*>          modules;
19};
20
21#endif /* _AI_TEAM_MEMBER_H */
Note: See TracBrowser for help on using the repository browser.