11 lines
159 B
C
11 lines
159 B
C
|
#ifndef GRILLE_H
|
||
|
#define GRILLE_H
|
||
|
|
||
|
#define TAILLE_CASE 20
|
||
|
#define LARGEUR_GRILLE 60
|
||
|
#define HAUTEUR_GRILLE 40
|
||
|
|
||
|
void dessinerGrille(void);
|
||
|
|
||
|
#endif /*GRILLE_H*/
|