change to SDLKey type
[physics.git] / src / input / inputManager.h
index 13b6583..829dbc3 100644 (file)
@@ -36,11 +36,11 @@ namespace input
     bool mouseLeft();
     bool mouseRight();
 
-    bool isPressed(Uint8);
-    bool isReleased(Uint8);
+    bool isPressed(SDLKey);
+    bool isReleased(SDLKey);
 
-    bool wasPressed(Uint8);
-    bool wasReleased(Uint8);
+    bool wasPressed(SDLKey);
+    bool wasReleased(SDLKey);
 }
 
 #endif // INPUT_H