Add the basic code to make othello playable without any rule checks
[Project_algorithmic_C.git] / lib / ui.h
index 291507808fb91c624964f7e074efeedf5d762b1f..b24b6740ef63e3320b85364365fecabdb9bf58aa 100644 (file)
--- a/lib/ui.h
+++ b/lib/ui.h
 #ifndef UI_H
 #define UI_H
 
+#include <ncurses.h>
+
+#include "constants.h"
+
+int prompt_values(WINDOW* windows, int base_y, int base_x, const char* msg, int* y, char* x);
+
+int map_col_letter_to_int(char c);
+
 /* 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]);
 
 /* non ncurses printing */