mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
20 lines
1 KiB
C
20 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* sprite_interactions.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchampio <tchampio@student.42lehavre.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/10/03 18:19:22 by tchampio #+# #+# */
|
|
/* Updated: 2025/10/03 18:21:00 by tchampio ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SPRITE_INTERACTIONS_H
|
|
# define SPRITE_INTERACTIONS_H
|
|
|
|
# include "../cub3d_data.h"
|
|
|
|
void handle_sprite_interactions(t_cub3d_data *data);
|
|
|
|
#endif
|