25 lines
1.3 KiB
C
25 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* message_error.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/30 16:43:20 by rparodi #+# #+# */
|
|
/* Updated: 2024/11/27 11:57:28 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MESSAGE_ERROR_H
|
|
# define MESSAGE_ERROR_H
|
|
|
|
# define E_STR_AC "You have to give map as an argument !\n"
|
|
# define E_STR_EXT_MAP "The name of the map have to finish by `.cub` !\n"
|
|
# define E_STR_NAME_MAP "The name of the map is invalid !\n"
|
|
|
|
# define RED "\x1b[31m"
|
|
# define BOLD_RED "\033[1;31m"
|
|
# define YELLOW "\x1b[33m"
|
|
# define BOLD_YELLOW "\033[1;33m"
|
|
# define RESET "\x1b[K\x1b[0m"
|
|
#endif
|