Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/ai/ai_team.h @ 10137

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

discoverd std::map and std::set

File size: 334 bytes
Line 
1
2#ifndef _AI_TEAM_H
3#define _AI_TEAM_H
4
5#include "ai_swarm.h"
6
7class AITeam{
8 public:
9        ~AITeam(){}
10        AITeam(){}
11   void process(float dt);
12        void addAI(int swarmNumber, AIModule* aiModule);
13        void removeAI(int swarmNumber, AIModule* aiModule);
14        int getTeamSize();
15       
16 private:
17        std::map<int,AISwarm*> swarms;
18};
19
20#endif /* _AI_TEAM_H */
Note: See TracBrowser for help on using the repository browser.