Fix to the const definition
[Project_algorithmic_C.git] / lib / othello.h
index e590b02d9790aa014ee4e2e248069c60c0d8dc2b..7123697e655f5a41c1e30666afd39fefab951ddc 100644 (file)
 #ifndef OTHELLO_H
 #define OTHELLO_H
 
+#include "constants.h"
+
+int pawn[board_size][board_size] = {
+    {0, 0}
+};
+
 #endif /* OTHELLO_H */