| 12345678910111213141516171819202122232425 |
- #ifndef INPUTMANAGER_H
- #define INPUTMANAGER_H
- //Headers
- #include"SDL.h"
- class InputManager{
- public:
- InputManager();
- ~InputManager();
- bool startUp();
- bool processInput();
- void shutDown();
- private:
- bool handleEvent(SDL_Event * event);
- };
- #endif
|