diff options
Diffstat (limited to 'pieces.h')
-rw-r--r-- | pieces.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |