411dcc2de52fb04fd445dc80bf65cee264f6dae9
[physics.git] / src / input / inputManager.h
1 #ifndef INPUT_H
2 #define INPUT_H
3
4 #include <SDL/SDL.h>
5
6 /// ***** Header Methods *****
7 void inputUpdate();
8
9 bool isPressed(Uint8);
10 bool isReleased(Uint8);
11
12 bool wasPressed(Uint8);
13 bool wasReleased(Uint8);
14
15 #endif // INPUT_H