-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.h
37 lines (31 loc) · 1.39 KB
/
main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ttranche <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/01/31 13:53:21 by ttranche #+# #+# */
/* Updated: 2021/03/22 12:49:11 by ttranche ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MAIN_H
# define MAIN_H
# include <mlx.h>
# include <stdio.h>
# include <stdlib.h>
# include <math.h>
# include "cub.h"
# include "world/cub_player.h"
# include "render/cub_raycast.h"
# include "render/cub_floor.h"
# include "render/cub_hud.h"
# include "render/cub_bitmap.h"
# include "parser/cub_file.h"
# include "pathfinder/cub_pathfinder.h"
# include "utils/cub_error.h"
# include "utils/cub_checker.h"
# include "utils/cub_setup.h"
int get_delay(bool startnow, int min, bool mac);
void set_bonus(bool *bonus);
#endif