/* $Id: inputhandler.hpp,v 1.3 2005/06/28 13:55:20 chfreund Exp $ */ #ifndef _INPUTHANDLER_HPP_ #define _INPUTHANDLER_HPP_ #include class InputHandler { public: virtual ~InputHandler( void ) = 0; virtual bool handleInput( SDL_Event* event ) = 0; }; #endif // _INPUTHANDLER_HPP_