summaryrefslogtreecommitdiff
path: root/prge_input.h
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-03-27 08:27:46 +0500
committerpryazha <pryadeiniv@mail.ru>2025-03-27 08:27:46 +0500
commit92a8eb610f40c9770569ca63ca1bd705a6d3497d (patch)
tree7cb8edbf29e51aea24bc55be066b55033fe8fa1d /prge_input.h
parentb1389bad67cccd3da6815c2d5a436c177f09594b (diff)
audio, renaming
Diffstat (limited to 'prge_input.h')
-rw-r--r--prge_input.h15
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);