diff options
Diffstat (limited to 'prge_input.h')
-rw-r--r-- | prge_input.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/prge_input.h b/prge_input.h index a5a77c7..fe9c01f 100644 --- a/prge_input.h +++ b/prge_input.h @@ -1,10 +1,5 @@ -#ifndef PRGE_INPUT_H -#define PRGE_INPUT_H - -Input input_init(); -void input_update(Input *input); -B32 key_is_pressed(Key key); -B32 key_first_press(Key key); -B32 key_was_pressed(Key key); - -#endif /* PRGE_INPUT_H */ +Input init_input(); +void update_input(Input *in); +B32 is_key_down(Key key); +B32 is_key_pressed(Key key); +B32 was_key_pressed(Key key); |