Fichier Makefile terminé, avec la création des fichiers d'en-tête

This commit is contained in:
2023-12-01 19:06:10 +01:00
parent c72c4c4c1e
commit a7f7142baf
5 changed files with 55 additions and 7 deletions

23
snake/plateau_init.h Normal file
View File

@@ -0,0 +1,23 @@
/* Fichier d'en-tête comprenant les definitions des contantes nommées et les prototypes)
Written by Yann KERAUDREN and Titouan LERICHE*/
#ifndef PLATEAU_INIT_H
#define PLATEAU_INIT_H
#define LIGNES 40
#define COLONNES 60
#define NBR_POMMME 5
#define TAILLE_SERPENT 10
int** plateau_init(void);
#endif /* PLATEAU_INIT_H */