summaryrefslogtreecommitdiffhomepage
path: root/src/rodeo_input.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rodeo_input.c')
-rw-r--r--src/rodeo_input.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/rodeo_input.c b/src/rodeo_input.c
deleted file mode 100644
index 3a40b77..0000000
--- a/src/rodeo_input.c
+++ /dev/null
@@ -1,23 +0,0 @@
-
-// public internal
-#include "rodeo_types.h"
-#include "rodeo.h"
-
-// external
-#include "SDL/SDL.h"
-
-int32_t
-rodeo_input_mouse_x_get(void)
-{
- int32_t x, y;
- SDL_GetMouseState(&x, &y);
- return x;
-}
-
-int32_t
-rodeo_input_mouse_y_get(void)
-{
- int32_t x, y;
- SDL_GetMouseState(&x, &y);
- return y;
-}