24 lines
342 B
C
24 lines
342 B
C
|
/* 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 */
|