diff options
Diffstat (limited to 'prge_input.h')
-rw-r--r-- | prge_input.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/prge_input.h b/prge_input.h new file mode 100644 index 0000000..a5a77c7 --- /dev/null +++ b/prge_input.h @@ -0,0 +1,10 @@ +#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 */ |