start project with header, struct, mlx functionnal, and basic key event action

This commit is contained in:
hugogogo
2022-03-23 14:27:36 +01:00
parent 1959a1a9a3
commit 95bd304708
11 changed files with 228 additions and 1 deletions

14
headers/cube3d.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef CUBE3D_H
# define CUBE3D_H
#include "../libs/libft/includes/libft.h"
#include <mlx.h>
#include <unistd.h> // for sleep()
#include <stdlib.h> // for atoi()
#include <stdio.h> // for printf()
#include "cube3d_macro.h"
#include "cube3d_struct.h"
#include "cube3d_proto.h"
#endif