save
This commit is contained in:
parent
482f88b455
commit
298ab747a2
5 changed files with 46 additions and 0 deletions
12
src/main.c
Normal file
12
src/main.c
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue