diff options
| author | Daniel Hader <[email protected]> | 2026-06-14 12:58:14 -0500 |
|---|---|---|
| committer | Daniel Hader <[email protected]> | 2026-06-14 12:58:14 -0500 |
| commit | 482ea0261cb9f0def49ce3df542b2a7f811262d1 (patch) | |
| tree | 3bb961316b2ca856409b9f3b2145036ae9f5d704 /src/input.h | |
build and test environment using makefile and basic SDL3 setup
Diffstat (limited to 'src/input.h')
| -rw-r--r-- | src/input.h | 11 |
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 |
