mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
20 lines
1 KiB
C
20 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* move_sprites.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/08/18 13:22:06 by kcolin #+# #+# */
|
|
/* Updated: 2025/08/18 13:22:40 by kcolin ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MOVE_SPRITES_H
|
|
# define MOVE_SPRITES_H
|
|
|
|
# include "../cub3d_data.h"
|
|
|
|
void move_sprites(t_cub3d_data *data);
|
|
|
|
#endif // MOVE_SPRITES_H
|