cub3d/inc/errors.h
2025-05-14 16:14:27 +02:00

22 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* errors.h :+: :+: */
/* +:+ */
/* By: qmennen <qmennen@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/15 15:42:55 by qmennen #+# #+# */
/* Updated: 2025/05/14 12:43:01 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef ERRORS_H
# define ERRORS_H
# include "cub3d.h"
const char *last_error(void);
void game_error(t_game *game, const char *msg);
#endif