mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* destroy_utils.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchampio <tchampio@student.42lehavre.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/08/11 12:07:48 by tchampio #+# #+# */
|
|
/* 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);
|
|
void destroy_hud_textures(t_cub3d_data *data);
|
|
|
|
#endif
|