handle cross click

This commit is contained in:
mcolonna 2024-11-07 14:27:17 +01:00
parent 3cd1066b1b
commit 8ad8eb1fbc
3 changed files with 20 additions and 10 deletions

View file

@ -6,7 +6,7 @@
/* By: mc <mc@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/17 14:43:09 by mcolonna #+# #+# */
/* Updated: 2024/11/01 20:59:28 by mc ### ########.fr */
/* Updated: 2024/11/07 14:26:28 by mc ### ########.fr */
/* */
/* ************************************************************************** */
@ -41,7 +41,9 @@ int hook_keypress(int keycode);
/// @return Unused.
int hook_keyrelease(int keycode);
/// @brief To call at the start of the program.
void input_init(void);
/// @brief To handle the input of a window.
///
/// @param win_ptr Reference to the window to use.
void input_init(void *win_ptr);
#endif