Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 10135 was 10135, checked in by tfahrni, 17 years ago
File size: 381 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
13        void addSwarm(int swarmNumber);
14        void removeSwarm(int swarmNumber);
15        AISwarm* getSwarm(int swarmNumber);
16        AISwarm* getCreateSwarm(int swarmNumber);
17
18 private:
19        AISwarm* swarms[32];
20        static const int maxSwarms=32;
21};
22
23#endif /* _AI_TEAM_H */
Note: See TracBrowser for help on using the repository browser.