mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
15 lines
215 B
C
15 lines
215 B
C
#ifndef MAPUTILS_H
|
|
# define MAPUTILS_H
|
|
|
|
# include <stdbool.h>
|
|
|
|
typedef struct s_mapdata
|
|
{
|
|
char *filename;
|
|
bool isvalid;
|
|
char error[1024];
|
|
} t_mapdata;
|
|
|
|
bool check_cubfile(char *filename, t_mapdata *map);
|
|
|
|
#endif
|