1 2 3 4 5 6 7 8 9 10 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