summaryrefslogtreecommitdiff
path: root/src/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/input.h')
-rw-r--r--src/input.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/input.h b/src/input.h
new file mode 100644
index 0000000..28b7cfc
--- /dev/null
+++ b/src/input.h
@@ -0,0 +1,11 @@
+#ifndef LEO_INPUT_H
+#define LEO_INPUT_H
+
+#include <stdbool.h>
+#include <SDL3/SDL_events.h>
+
+void LEO_Input_update(const SDL_Event event);
+
+bool LEO_Input_quit();
+
+#endif