Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/ai/src/ai/movement_module.h @ 10071

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

made some ai changes..

File size: 345 bytes
Line 
1
2#ifndef _MOVEMENT_MODULE_H
3#define _MOVEMENT_MODULE_H
4
5#include "ai_module.h"
6#include "player.h"
7#include "playable.h"
8
9class MovementModule : public AIModule{
10 public:
11   MovementModule();
12   virtual ~MovementModule();
13   virtual void process();
14 private:
15         Vector v;
16         float getSize(WorldEntity* object);
17};
18
19#endif /* _MOVEMENT_MODULE_H */
Note: See TracBrowser for help on using the repository browser.