cub3d/src/utils/destroy_utils.h

23 lines
1.1 KiB
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* destroy_utils.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tchampio <tchampio@student.42lehavre.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/08/11 12:07:48 by tchampio #+# #+# */
2025-09-08 17:11:58 +02:00
/* Updated: 2025/09/08 14:15:25 by tchampio ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DESTROY_UTILS_H
# define DESTROY_UTILS_H
# include "../cub3d_data.h"
void destroy_textures(t_cub3d_data *data);
void destroy_sprites(t_cub3d_data *data);
2025-09-08 17:11:58 +02:00
void destroy_hud_textures(t_cub3d_data *data);
#endif