This commit is contained in:
mcolonna 2024-02-26 12:51:26 +01:00
parent 482f88b455
commit 298ab747a2
5 changed files with 46 additions and 0 deletions

12
src/main.c Normal file
View file

@ -0,0 +1,12 @@
#include "mlx.h"
int main(void)
{
void *mlx;
void *win;
mlx = mlx_init();
win = mlx_new_window(mlx, 600, 400, "UNDRETALE");
(void)win;
mlx_loop(mlx);
}