inputManager.h 308 B

12345678910111213141516171819202122232425
  1. #ifndef INPUTMANAGER_H
  2. #define INPUTMANAGER_H
  3. //Headers
  4. #include"SDL.h"
  5. class InputManager{
  6. public:
  7. InputManager();
  8. ~InputManager();
  9. bool startUp();
  10. bool processInput();
  11. void shutDown();
  12. private:
  13. bool handleEvent(SDL_Event * event);
  14. };
  15. #endif