Implement :
[Project_algorithmic_C.git] / lib / constants.c
index 289bf044d315109ecaedd536e444c2b3651d61a0..7248975a9429671f4ab7d81ab40ed73b608041a4 100644 (file)
@@ -32,3 +32,12 @@ const unsigned int player_two = 2;
 
 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;