/* $Id: simplebot.hpp,v 1.1 2005/07/04 21:17:19 chfreund Exp $ */ #ifndef _SIMPLEBOT_HPP_ #define _SIMPLEBOT_HPP_ #include "bot.hpp" #include "vector.hpp" class SimpleBot : public Bot { private: Event m_event; Vector m_lastPosition; int m_count; public: SimpleBot(); virtual Event getEvent() const { return m_event; } virtual void update(); }; #endif // _SIMPLEBOT_HPP_