19 lines
1,003 B
C
19 lines
1,003 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* levels.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/18 17:45:16 by mcolonna #+# #+# */
|
|
/* Updated: 2024/04/18 18:00:50 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LEVELS_H
|
|
# define LEVELS_H
|
|
|
|
void init_levels(int count, t_const_string *srcs);
|
|
void win(void);
|
|
|
|
#endif
|