blob: a5a77c732369d1cdb19c32b42c0f38b9d4df7a95 (
plain)
1
2
3
4
5
6
7
8
9
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 */
|