summaryrefslogtreecommitdiff
path: root/prge_input.h
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-02-20 15:10:11 +0500
committerpryazha <pryadeiniv@mail.ru>2025-02-20 15:10:11 +0500
commit34821e9fefb0d7cbf9e72a2457b2901edbbe03bb (patch)
tree59ec69f7d19aa48091b3d39ad0dfd6b26bacb88b /prge_input.h
initial
Diffstat (limited to 'prge_input.h')
-rw-r--r--prge_input.h10
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 */