diff options
Diffstat (limited to 'pieces.h')
-rw-r--r-- | pieces.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,8 +9,8 @@ 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); +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, int mapW); void freepiece(struct piece* pc); #endif |