20 lines
1 KiB
C
20 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* input.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/03/26 12:16:32 by mcolonna #+# #+# */
|
|
/* Updated: 2024/04/02 14:39:38 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef INPUT_H
|
|
# define INPUT_H
|
|
|
|
int key_press_hook(int keycode);
|
|
int key_release_hook(int keycode);
|
|
void input_loop(void);
|
|
|
|
#endif
|