diff options
| author | realtradam <[email protected]> | 2023-06-16 02:17:51 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-16 02:17:51 -0400 |
| commit | 4cb44499b27cd8fe4955a16a9af46cf97ecf06e3 (patch) | |
| tree | 51cbcfb7a5328dc3fbc9dbc5a502ed70ed7c951d /include/rodeo/input.h | |
| parent | a47cc44ef7191d03f8ca1b8d4e6b9dd34fba1807 (diff) | |
| download | RodeoKit-4cb44499b27cd8fe4955a16a9af46cf97ecf06e3.tar.gz RodeoKit-4cb44499b27cd8fe4955a16a9af46cf97ecf06e3.zip | |
switch SDL_Init to use SDL_InitSubSystem and move to where relevant
Diffstat (limited to 'include/rodeo/input.h')
| -rw-r--r-- | include/rodeo/input.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/rodeo/input.h b/include/rodeo/input.h index dac70e9..db41633 100644 --- a/include/rodeo/input.h +++ b/include/rodeo/input.h @@ -3,6 +3,12 @@ // public #include "rodeo/input_t.h" +void +rodeo_input_init(void); + +void +rodeo_input_deinit(void); + bool rodeo_input_poll(void); |
