From 676cdc452bf3f54f0013400fcf6adce9c8990150 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Thu, 23 Jan 2020 16:16:50 +0100 Subject: nice --- inc/cub3d.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'inc') diff --git a/inc/cub3d.h b/inc/cub3d.h index 7441583..eaac735 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -1,4 +1,21 @@ #ifndef CUB3D_H #define CUB3D_H +typedef struct s_winlist +{ + void *wlx; + void *winptr; + int x_size; + int y_size; +} t_winlist; + +typedef struct s_cublist +{ + char coolcub; +} t_cublist; + +t_cublist *ft_init_cublist(void); +t_winlist *ft_init_winlist(void); +void ft_parse_map(t_cublist *clist); + #endif -- cgit v1.2.3