Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/ai/ai_module.h @ 10045

Last change on this file since 10045 was 10045, checked in by tfahrni, 17 years ago
File size: 307 bytes
Line 
1
2#ifndef _AI_MODULE_H
3#define _AI_MODULE_H
4
5class AITeamMember;
6
7class AIModule{
8 public:
9   AIModule();
10   ~AIModule();
11   void process();
12   void setDifficulty(int newDifficulty);
13   void setOwner(AITeamMember* newOwner);
14 private:
15   int difficulty;
16   AITeamMember* owner;
17};
18
19#endif /* _AI_MODULE_H */
Note: See TracBrowser for help on using the repository browser.