C_chess/move.h

11 lines
184 B
C

#ifndef MOVE_H
#define MOVE_H
struct Location {
int x;
int y;
};
struct Location* getPossibleMoves(struct Location pieceLocation, unsigned int chessPiece);
#endif // MOVE_H