diff options
| author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-23 16:16:50 +0100 | 
|---|---|---|
| committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-23 16:16:50 +0100 | 
| commit | 676cdc452bf3f54f0013400fcf6adce9c8990150 (patch) | |
| tree | 0b9f7f5a368106e66fa0bda5ff0b4daca1db65f4 /inc | |
| parent | Trying to close (diff) | |
| download | 42-cub3d-676cdc452bf3f54f0013400fcf6adce9c8990150.tar.gz 42-cub3d-676cdc452bf3f54f0013400fcf6adce9c8990150.tar.bz2 42-cub3d-676cdc452bf3f54f0013400fcf6adce9c8990150.tar.xz 42-cub3d-676cdc452bf3f54f0013400fcf6adce9c8990150.tar.zst 42-cub3d-676cdc452bf3f54f0013400fcf6adce9c8990150.zip  | |
nice
Diffstat (limited to 'inc')
| -rw-r--r-- | inc/cub3d.h | 17 | 
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  | 
