Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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