X-Git-Url: https://git.piment-noir.org/?p=Project_algorithmic_C.git;a=blobdiff_plain;f=lib%2Fconstants.c;h=1006d0b283c5e10ed63fdeaa36f01611bfed38f6;hp=7248975a9429671f4ab7d81ab40ed73b608041a4;hb=a80646b74eca11c71696dedeb674870437c5bb6f;hpb=45ce2fe369cead248855111baa5fe0c0495acf69 diff --git a/lib/constants.c b/lib/constants.c index 7248975..1006d0b 100644 --- a/lib/constants.c +++ b/lib/constants.c @@ -20,7 +20,7 @@ #include "constants.h" -//const unsigned int board_size = 8; +//const int board_size = 8; const unsigned int empty = 0; const unsigned int black = 1; @@ -30,14 +30,14 @@ const unsigned int white = 2; const unsigned int player_one = 1; /* first player is black */ const unsigned int player_two = 2; -const unsigned int hint_allowed = 3; +const unsigned int hint_allowed = 3; const unsigned int hint_forbidden = 4; -const unsigned int north = 5; -const unsigned int north_east = 6; -const unsigned int east = 7; -const unsigned int south_east = 8; -const unsigned int south = 9; -const unsigned int south_west = 10; -const unsigned int west = 11; -const unsigned int north_west = 12; +const unsigned int north = 10; +const unsigned int north_east = 11; +const unsigned int east = 12; +const unsigned int south_east = 13; +const unsigned int south = 14; +const unsigned int south_west = 15; +const unsigned int west = 16; +const unsigned int north_west = 17;