2 * =====================================================================================
4 * Filename: constants.h
6 * Description: Header for constant values export
9 * Created: 24/04/2017 21:06:32
13 * Author: Jerome Benoit (fraggle), jerome.benoit@piment-noir.org
14 * Organization: Piment Noir
16 * =====================================================================================
22 #define board_size 8 /* 8 */
23 //extern const int board_size; /* 8 */
25 extern const unsigned int empty
; /* 0 */
26 extern const unsigned int black
; /* 1 */
27 extern const unsigned int white
; /* 2 */
29 extern const unsigned int player_one
; /* black */
30 extern const unsigned int player_two
; /* white */
32 extern const unsigned int hint_allowed
; /* legal place for a pawn */
33 extern const unsigned int hint_forbidden
; /* illegal place for a pawn */
35 extern const unsigned int north
;
36 extern const unsigned int north_east
;
37 extern const unsigned int east
;
38 extern const unsigned int south_east
;
39 extern const unsigned int south
;
40 extern const unsigned int south_west
;
41 extern const unsigned int west
;
42 extern const unsigned int north_west
;
44 #endif /* CONSTANTS_H */