diff options
Diffstat (limited to 'ui.h')
-rw-r--r-- | ui.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ #define UI_H void printrect(int y, int x, int h, int w); void printmap(char** map, int y, int x, int mapH, int mapW); -void printpieces(struct piece** hand, int y, int x, int nhand); +void printpiece(struct piece* pc, int y, int x, int color_pair); +void printpieces(struct piece** hand, int y, int x, int nhand, int highlight); #endif |