directory cleaning
[physics.git] / src / input / inputManager.h
index a117324..829dbc3 100644 (file)
@@ -19,6 +19,7 @@
 #define INPUT_H
 
 #include <SDL/SDL.h>
+#include "../Vector2.h"
 
 
 /// ***** Header Methods *****
@@ -30,11 +31,16 @@ namespace input
 
     void update();
 
-    bool isPressed(Uint8);
-    bool isReleased(Uint8);
+    Vector2 mousePosition();
 
-    bool wasPressed(Uint8);
-    bool wasReleased(Uint8);
+    bool mouseLeft();
+    bool mouseRight();
+
+    bool isPressed(SDLKey);
+    bool isReleased(SDLKey);
+
+    bool wasPressed(SDLKey);
+    bool wasReleased(SDLKey);
 }
 
 #endif // INPUT_H