Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Makefiles removed

File size: 327 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.