Add the basic code to make othello playable without any rule checks
[Project_algorithmic_C.git] / lib / constants.h
index 902489d328688007167dbcd0299e519a5d01e98a..aa6bc5172a2bd0246591321cd9f1491ce10227ec 100644 (file)
@@ -3,7 +3,7 @@
  *
  *       Filename:  constants.h
  *
- *    Description:  Header for constant values
+ *    Description:  Header for constant values export
  *
  *        Version:  1.0
  *        Created:  24/04/2017 21:06:32
 #define CONSTANTS_H
 
 #define board_size 8
+//extern const unsigned int board_size; /* 8 */
 
-extern const int empty;
-extern const int white;
-extern const int black;
+extern const unsigned int empty; /* 0 */
+extern const unsigned int white; /* 1 */
+extern const unsigned int black; /* 2 */
+
+extern const unsigned int player_one; /* black */
+extern const unsigned int player_two; /* white */
+
+
+extern const unsigned int hint_allowed; /* legal place for a pawn */
+extern const unsigned int hint_forbidden; /* illegal place for a pawn */
 
 #endif /* CONSTANTS_H */