SAE11_2023/snake/plateau_init.h

24 lines
341 B
C
Raw Normal View History

/* 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);
#endif /* PLATEAU_INIT_H */