22 lines
470 B
C
22 lines
470 B
C
#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 <math.h> // for M_PI, cos(), sin()
|
|
# include <sys/stat.h> // for open()
|
|
# include <fcntl.h> // for open flags
|
|
|
|
|
|
# include "colors.h"
|
|
# include "memorybook.h"
|
|
|
|
# include "cube3d_macro.h"
|
|
# include "cube3d_struct.h"
|
|
# include "cube3d_proto.h"
|
|
|
|
#endif
|