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
RevLine 
[10029]1
2#ifndef _AI_MODULE_H
3#define _AI_MODULE_H
4
[10045]5class AITeamMember;
[10029]6
7class AIModule{
8 public:
9   AIModule();
[10061]10   virtual ~AIModule() {}
[10062]11   virtual void process() {}
[10045]12   void setDifficulty(int newDifficulty);
13   void setOwner(AITeamMember* newOwner);
[10061]14 protected:
[10029]15   int difficulty;
[10045]16   AITeamMember* owner;
[10029]17};
18
19#endif /* _AI_MODULE_H */
Note: See TracBrowser for help on using the repository browser.