Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/ai/ai_team.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: 312 bytes
Line 
1
2#ifndef _AI_TEAM_H
3#define _AI_TEAM_H
4
5//class AITeamMember;
6#include "ai_team_member.h"
7
8class AITeam{
9 public:
10   AITeam();
11   ~AITeam();
12   void process();
13   void addMember(AITeamMember*);
14   AITeamMember* getTeamMember(int);
15 private:
16   std::vector<AITeamMember*> teamMembers;
17};
18
19#endif /* _AI_TEAM_H */
Note: See TracBrowser for help on using the repository browser.