mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* keypresses.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchampio <tchampio@student.42lehavre. +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/07/29 13:42:39 by tchampio #+# #+# */
|
|
/* Updated: 2025/07/29 20:09:30 by tchampio ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef KEYPRESSES_H
|
|
# define KEYPRESSES_H
|
|
|
|
typedef struct s_keypresses
|
|
{
|
|
bool is_w_pressed;
|
|
bool is_a_pressed;
|
|
bool is_s_pressed;
|
|
bool is_d_pressed;
|
|
bool is_left_pressed;
|
|
bool is_right_pressed;
|
|
} t_keypresses;
|
|
|
|
#endif // KEYPRESSES_H
|