aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: c252bca0c920cc923e6e2d2926e1737b5fef79a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <libft.h>
#include <mlx.h>
#include <cub3d.h>
#include <stdlib.h>

int
	main(void)
{
	t_win	*wlist;
	t_cub	*clist;

	if (!(wlist = ft_init_win())
		|| !(clist = ft_init_cub()))
		return (ft_exit(4));
	ft_parse_map(wlist, clist, "map/map_one.cub");
	if (ft_init_winlx(wlist) < 0)
		return (ft_exit(3));
	mlx_key_hook(wlist->winptr, ft_key_event, wlist);
	ft_drawsquare(wlist, clist, 80, 80);
	mlx_loop(wlist->wlx);
	ft_memdel(clist);
	return (0);
}