9 lines
312 B
C
9 lines
312 B
C
#ifndef READ_H
|
|
#define READ_H
|
|
#include "function.h"
|
|
vect *fileToTab2D (const char *name_file, char **tab,
|
|
const unsigned N, vect *player, int *nbr_targets);
|
|
int countCustomMaps(char *name_directory);
|
|
char ** generatorMenu(char *name_directory, vect *size, vect *pos_player);
|
|
#endif // !READ_H
|