Finalize the implementation of the playable shots list displaying
[Project_algorithmic_C.git] / lib / ui.h
index c93a091f681cec305b33cd1e3f0f7aee9cbf3781..67ec2d6f0718540ff55e9cd0d037a60990742f73 100644 (file)
--- a/lib/ui.h
+++ b/lib/ui.h
@@ -3,7 +3,7 @@
  *
  *       Filename:  ui.h
  *
- *    Description:  Header for user interface routines 
+ *    Description:  Header for user interface routines
  *
  *        Version:  1.0
  *        Created:  15/03/2017 20:07:12
@@ -22,6 +22,7 @@
 #include <ncurses.h>
 
 #include "constants.h"
+#include "othello.h"
 
 int prompt_values(WINDOW* windows, int base_y, int base_x, const char* msg, int* y, char* x);
 
@@ -31,6 +32,7 @@ char map_col_index_to_letter(int index);
 /* ncurses printing */
 void print_board(int y, int x);
 void print_pawns(int base_y, int base_x, unsigned int pawn_array[board_size][board_size]);
+void print_shots_list(int base_y, int base_x, struct shots_list_s* shots_list);
 
 /* non ncurses printing */