/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* game.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/26 12:59:53 by erey-bet #+# #+# */ /* Updated: 2023/04/26 15:44:55 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ #include "../cube3D.h" int start_game(t_map *map) { t_game *game; (void)map; game->mlx = mlx_init(1920, 1080, "jan lili", true) if (mlx) return (1); game->window = mlx_new_image(game->mlx, 128, 128); if (game->image) { mlx_close_window(game->mlx); return(1); } if (mlx_image_to_window(game->mlx, game->window, 0, 0) == -1) { mlx_close_window(game->mlx); return(1); } mlx_loop_hook(game->mlx, manage, game) mlx_loop(game->mlx); mlx_terminate(game->mlx); return (0); }