13 lines
198 B
C
13 lines
198 B
C
#ifndef TERRAIN_H
|
|
#define TERRAIN_H
|
|
|
|
#define LARGEUR_FENETRE 1250
|
|
#define HAUTEUR_FENETRE 750
|
|
#define TAILLE_CELLULE 25
|
|
#define DELAI_MILLISECONDES 100
|
|
#define ESPACE_NOIR 100
|
|
|
|
void jeu();
|
|
|
|
#endif
|