Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 10061 was 10045, checked in by tfahrni, 17 years ago
File size: 375 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//class AIModule;
9
10class AITeamMember : public WorldEntity{
11 public:
12   AITeamMember();
13   ~AITeamMember();
14
15   void process();
16   void addToTeam(int);
17   void addModule(AIModule*);
18 private:
19   std::vector<AIModule*>          modules;
20};
21
22#endif /* _AI_TEAM_MEMBER_H */
Note: See TracBrowser for help on using the repository browser.