2011-m2s3-city-builder/directions.hh
2011-11-06 22:24:42 +01:00

19 lines
202 B
C++

#ifndef _DIRECTIONS_HH_
#define _DIRECTIONS_HH_
typedef enum Cardinaux {
N = 0,
E = 1,
S = 2,
W = 3
} Cardinaux;
typedef enum Diagonales {
NE = 0,
SE = 1,
SW = 2,
NW = 3
} Diagonales;
#endif