21 lines
1020 B
C
21 lines
1020 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* errors.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: qmennen <qmennen@student.codam.nl> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/04/15 15:42:55 by qmennen #+# #+# */
|
|
/* Updated: 2025/04/15 15:59:42 by qmennen ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ERRORS_H
|
|
# define ERRORS_H
|
|
|
|
# include "cub3d.h"
|
|
|
|
void game_error(t_game *game, const char *msg, int mlx_error);
|
|
|
|
#endif
|