summaryrefslogtreecommitdiff
path: root/pieces.h
diff options
context:
space:
mode:
Diffstat (limited to 'pieces.h')
-rw-r--r--pieces.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/pieces.h b/pieces.h
index ee2e371..c0d5eaa 100644
--- a/pieces.h
+++ b/pieces.h
@@ -7,5 +7,9 @@ struct piece {
};
struct piece* randpiece();
+void refillpieces(struct piece** hand, int nhand);
+bool placeable(char** map, struct piece* pc, int row, int col, int mapH, int mapW);
+void place(char** map, struct piece* pc, int row, int col);
+void freepiece(struct piece* pc);
#endif