summaryrefslogtreecommitdiff
path: root/ui.h
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-06-06 12:36:14 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-06-06 12:36:14 +0800
commite5711dbe6dc7f38314971e154b57f49450e68a7c (patch)
treeef085c6ad29e2067c428bf5c71bfd1947fa33553 /ui.h
parent5c43e5da6e3768b9c734fbd6a4a4b824f953d842 (diff)
Reencapsulate functions, print stats after game is overHEADmain
Diffstat (limited to 'ui.h')
-rw-r--r--ui.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.h b/ui.h
index 0a4c2e1..04fc27b 100644
--- a/ui.h
+++ b/ui.h
@@ -4,6 +4,7 @@ void printrect(int y, int x, int h, int w);
void printmap(char* map, int y, int x, int mapH, int mapW);
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);
+void printstats(int points, int combo, int y, int x);
void printhelp(int y, int x);
#endif