Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/ai/ai_team_member.h @ 10029

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

the files i forgot to add..

File size: 338 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
8class AITeamMember : public WorldEntity{
9 public:
10   AITeamMember();
11   ~AITeamMember();
12
13   void process();
14   void addToTeam(int aiTeamNumber);
15 private:
16   std::vector<AIModule>          modules;
17};
18
19#endif /* _AI_TEAM_MEMBER_H */
Note: See TracBrowser for help on using the repository browser.