aboutsummaryrefslogtreecommitdiffstats
path: root/inc/cub3d.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/cub3d.h')
-rw-r--r--inc/cub3d.h17
1 files changed, 17 insertions, 0 deletions
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