/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* map2.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/01 17:12:58 by mcolonna #+# #+# */ /* Updated: 2024/10/15 16:44:40 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ #include "map.h" #include "map_utils.h" #include "stream.h" #include "read_all_text.h" #include "libft.h" #include #include #include #include #include const t_map_case *map_get_case(const t_map *map, int x, int y) { return (&map->cases[y * map->width + x]); }