Implement the othello board printing
[Project_algorithmic_C.git] / lib / constants.h
index 431b7964daf57117513a9e97100123afc663fa6c..74ea1d8d8a3c9222065453fe6df279e8e9965a22 100644 (file)
@@ -19,5 +19,9 @@
 #ifndef CONSTANTS_H
 #define CONSTANTS_H
 
+const int empty = 0;
+const int white = 1;
+const int black = 2;
+
 #endif /* CONSTANTS_H */