| 1234567891011121314151617181920212223242526 |
- //
- // constante.h
- // Life
- //
- // Created by Benoit Sida on 2014-06-13.
- // Copyright (c) 2014 Benoit Sida. All rights reserved.
- //
-
- #ifndef Life_constante_h
- #define Life_constante_h
-
- #include <stdlib.h>
- #include <SDL2/SDL.h>
- #include <SDL2_image/SDL_image.h>
-
- #define TAILLE_BLOC 34
- #define NB_BLOCS 12
- #define LARGEUR_ECRAN TAILLE_BLOC*NB_BLOCS
- #define HAUTEUR_ECRAN TAILLE_BLOC*NB_BLOCS
- #define CYCLES 20
- #define WAIT 0
- #define MAXMAP (NB_BLOCS*NB_BLOCS)
-
- enum {HAUT, BAS, GAUCHE, DROITE};
-
- #endif
|