19 lines
1.1 KiB
C
19 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* message_error.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/30 16:43:20 by rparodi #+# #+# */
|
|
/* Updated: 2024/10/31 10:38:21 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MESSAGE_ERROR_H
|
|
# define MESSAGE_ERROR_H
|
|
|
|
# define ERR_ARGS_COUNT "Error:\nYou have to give only the map on arguments !\n"
|
|
# define INV_NAME_MAP "Error:\nThe name of the map have to finish by `.cub` !\n"
|
|
|
|
#endif
|