/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* minimap.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/18 13:09:05 by mcolonna #+# #+# */ /* Updated: 2024/11/18 13:14:12 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef MINIMAP_H # define MINIMAP_H # include "utils.h" /// @brief Draw the minimap on the image. /// @param img_data Data of the image to draw the minimap on. void draw_minimap(u_int32_t *img_data); #endif