blob: 67807e27c2808a3c13ea9816df549b1d120e70ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* event.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/15 06:39:37 by cacharle #+# #+# */
/* Updated: 2019/11/15 09:27:55 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "cub3d.h"
int handle_key(int key, void *param)
{
t_state *state;
state = (t_state*)param;
if (key == MLXK_ESC)
state->running = FALSE;
return (0);
}
|