diff options
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 |