mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
21 lines
1 KiB
C
21 lines
1 KiB
C
|
|
/* ************************************************************************** */
|
||
|
|
/* */
|
||
|
|
/* ::: :::::::: */
|
||
|
|
/* inits.h :+: :+: :+: */
|
||
|
|
/* +:+ +:+ +:+ */
|
||
|
|
/* By: tchampio <tchampio@student.42lehavre. +#+ +:+ +#+ */
|
||
|
|
/* +#+#+#+#+#+ +#+ */
|
||
|
|
/* Created: 2025/07/31 13:28:47 by tchampio #+# #+# */
|
||
|
|
/* Updated: 2025/07/31 13:29:35 by tchampio ### ########.fr */
|
||
|
|
/* */
|
||
|
|
/* ************************************************************************** */
|
||
|
|
|
||
|
|
#ifndef INITS_H
|
||
|
|
# define INITS_H
|
||
|
|
|
||
|
|
# include "../cub3d_data.h"
|
||
|
|
|
||
|
|
void init_cub3d_data(t_cub3d_data *data, char **argv);
|
||
|
|
|
||
|
|
#endif // INITS_H
|