
feat: - win screen - "press enter to retry" in both screens - reset moves only when winning the game change: - game over screen display - display top-left move a little differently dev: - scripts to import different text sizes
21 lines
1 KiB
C
21 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* levels.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/18 17:45:16 by mcolonna #+# #+# */
|
|
/* Updated: 2024/04/19 12:48:33 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LEVELS_H
|
|
# define LEVELS_H
|
|
|
|
void init_level(void);
|
|
void ask_retry(bool current);
|
|
void init_levels(int count, t_const_string *srcs);
|
|
void win(void);
|
|
|
|
#endif
|