/* $Id: gismobot.hpp,v 1.1 2005/07/18 06:48:10 uwe Exp $ */ #ifndef _GISMOBOT_HPP_ #define _GISMOBOT_HPP_ /**********************************************************/ #include "bot.hpp" /**********************************************************/ class GismoBot: public Bot { public: GismoBot(); virtual ~GismoBot(); virtual Event getEvent() { return m_event; } virtual void update(); protected: Event m_event; }; /**********************************************************/ #endif // _GISMOBOT_HPP_