Trace Engine
A Raycaster Engine in C
Loading...
Searching...
No Matches
app_input.h
Go to the documentation of this file.
1#ifndef _H_APP_INPUT
2#define _H_APP_INPUT
3
4#include <stdbool.h>
5
9bool is_key_being_pressed(const char key);
10
14bool is_key_just_pressed(const char key);
15
16#endif
bool is_key_just_pressed(const char key)
Definition app_input.c:15
bool is_key_being_pressed(const char key)
Definition app_input.c:8