diff options
author | omnisci3nce <omniscient.oce@gmail.com> | 2024-07-12 12:47:07 +1000 |
---|---|---|
committer | omnisci3nce <omniscient.oce@gmail.com> | 2024-07-12 12:47:07 +1000 |
commit | f74cf52946f4e569a26bc81105537b40be95c2c7 (patch) | |
tree | 1d000367350d0e28eb7cfbc800286a0ed30a4e6c /src/systems/input.h | |
parent | fedba7ff68924ff50022405fc9103a5acf7013fe (diff) |
wip: big makeover
Diffstat (limited to 'src/systems/input.h')
-rw-r--r-- | src/systems/input.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/systems/input.h b/src/systems/input.h index 1ef7940..11c40ea 100644 --- a/src/systems/input.h +++ b/src/systems/input.h @@ -36,7 +36,7 @@ bool key_just_released(keycode key); // --- Lifecycle -bool Input_Init(Input_state *input, struct GLFWwindow *window); -void Input_Shutdown(Input_state *input); +bool Input_Init(Input_State *input, struct GLFWwindow *window); +void Input_Shutdown(Input_State *input); -void Input_Update(Input_state *state); // must be run once per main loop +void Input_Update(Input_State *state); // must be run once per main loop |