-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfree.c
More file actions
23 lines (21 loc) · 1.07 KB
/
Copy pathfree.c
File metadata and controls
23 lines (21 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* free.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aqadil <aqadil@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/07 14:12:34 by aqadil #+# #+# */
/* Updated: 2022/06/11 19:10:41 by aqadil ### ########.fr */
/* */
/* ************************************************************************** */
#include "cub3d.h"
void init_home_screen_vars(t_data *mlx)
{
mlx->loading_i = 0;
mlx->loading_j = 0;
mlx->loading_counter = 0;
mlx->isloadingdone = 0;
mlx->loading_w = 300;
mlx->loading_h = 50;
}