Rattrape des conneries de Camille
This commit is contained in:
25
game/game.c
Normal file
25
game/game.c
Normal file
@ -0,0 +1,25 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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);
|
||||
}
|
Reference in New Issue
Block a user