| 123456789101112131415161718192021 |
- //
- // constantes.h
- // Mario Sokoban
- //
- // Created by Benoit Sida on 2014-02-16.
- // Copyright (c) 2014 Benoit Sida. All rights reserved.
- //
-
- #ifndef Mario_Sokoban_constantes_h
- #define Mario_Sokoban_constantes_h
-
- #define TAILLE_BLOC 34
- #define NB_BLOCS_LARGEUR 12
- #define NB_BLOCS_HAUTEUR 12
- #define LARGEUR_ECRAN TAILLE_BLOC*NB_BLOCS_LARGEUR
- #define HAUTEUR_ECRAN TAILLE_BLOC*NB_BLOCS_HAUTEUR
-
- enum {HAUT,BAS,GAUCHE,DROITE};
- enum {VIDE, WALL, BOX, TARGET, MARIO, BOX_OK};
-
- #endif
|