2025-08-11 13:00:38 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
|
/* */
|
|
|
|
|
/* ::: :::::::: */
|
|
|
|
|
/* 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 */
|
2025-08-11 13:00:38 +02:00
|
|
|
/* */
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
|
|
#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);
|
2025-08-11 13:00:38 +02:00
|
|
|
|
|
|
|
|
#endif
|