23 lines
1.0 KiB
C
23 lines
1.0 KiB
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"
|
|
|
|
|
|
const char *last_error();
|
|
void game_error(t_game *game, const char *msg);
|
|
|
|
#endif
|