diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -6,13 +6,17 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/08 14:14:13 by dkaiser #+# #+# */ -/* Updated: 2024/05/08 15:56:23 by dkaiser ### ########.fr */ +/* Updated: 2024/05/09 15:15:29 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ +#include "mlx.h" #include "so_long.h" -int main(void) { +int main(void) +{ + t_game game; - return 0; + init(&game); + mlx_loop(game.mlx); } |
