/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* input.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/26 12:16:32 by mcolonna #+# #+# */ /* Updated: 2024/03/26 13:26:27 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef INPUT_H # define INPUT_H void input_init(void); int key_press_hook(int keycode); int key_release_hook(int keycode); #endif