26 lines
1.0 KiB
C
26 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* game.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/26 12:59:53 by erey-bet #+# #+# */
|
|
/* Updated: 2023/04/26 14:47:50 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../cube3D.h"
|
|
|
|
int start_game(t_map *map)
|
|
{
|
|
mlx_t *mlx;
|
|
|
|
(void)map;
|
|
mlx = mlx_init(1920, 1080, "jan lili", true);
|
|
mlx_loop(mlx);
|
|
mlx_terminate(mlx);
|
|
|
|
return (0);
|
|
}
|