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