diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-10 15:44:28 +1000 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-10 15:44:28 +1000 |
commit | 53fe85a463c9c68ec75fa4efb496d1ff864a929e (patch) | |
tree | f917cc01dd4382630c21eb7a5ab872dbe7d948b0 /src/systems | |
parent | 78275161e08df050d3439f16ef88de8e421c6f8b (diff) |
add bindings friendly functions
Diffstat (limited to 'src/systems')
-rw-r--r-- | src/systems/input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/systems/input.c b/src/systems/input.c index fc62db8..5df1159 100644 --- a/src/systems/input.c +++ b/src/systems/input.c @@ -25,6 +25,7 @@ bool input_system_init(input_state *input, GLFWwindow *window) { assert(input->mouse.x_delta == 0); assert(input->mouse.y_delta == 0); + INFO("Finish input init"); return true; } |