You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.4 KiB
C
29 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* parsing_check.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hroussea <hroussea@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/04/15 15:21:19 by hroussea #+# #+# */
|
|
/* Updated: 2021/04/20 16:06:34 by hroussea ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PARSING_CHECK_H
|
|
# define PARSING_CHECK_H
|
|
|
|
# include "parsing.h"
|
|
# include <stdio.h>
|
|
|
|
t_bool hc_check_floor(t_cubheader *hdr, t_bool display);
|
|
t_bool hc_check_ceil(t_cubheader *hdr, t_bool display);
|
|
t_bool hc_check_east(t_cubheader *hdr, t_bool display);
|
|
t_bool hc_check_north(t_cubheader *hdr, t_bool display);
|
|
t_bool hc_check_west(t_cubheader *hdr, t_bool display);
|
|
t_bool hc_check_south(t_cubheader *hdr, t_bool display);
|
|
t_bool hc_check_resolution(t_cubheader *hdr, t_bool display);
|
|
t_bool hc_check_sprite(t_cubheader *hdr, t_bool display);
|
|
|
|
#endif
|