2023-12-01 19:06:10 +01:00
|
|
|
/* 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
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-12-11 23:32:22 +01:00
|
|
|
int* plateau_init(void);
|
2023-12-01 19:06:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PLATEAU_INIT_H */
|