Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/ai/ai_team.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: 241 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 private:
14   std::vector<AITeamMember*> teamMembers;
15};
16
17#endif /* _AI_TEAM_H */
Note: See TracBrowser for help on using the repository browser.