From 482ea0261cb9f0def49ce3df542b2a7f811262d1 Mon Sep 17 00:00:00 2001 From: Daniel Hader Date: Sun, 14 Jun 2026 12:58:14 -0500 Subject: build and test environment using makefile and basic SDL3 setup --- src/input.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/input.h (limited to 'src/input.h') 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 +#include + +void LEO_Input_update(const SDL_Event event); + +bool LEO_Input_quit(); + +#endif -- cgit v1.2.3