fixes: trying to fix for import into MPLAB
This commit is contained in:
parent
5359d0fb05
commit
36db36392a
4 changed files with 4 additions and 19 deletions
|
|
@ -55,8 +55,8 @@ enum CastleSide {
|
|||
* A struct that represents a square on the chess board.
|
||||
*/
|
||||
struct Square {
|
||||
Rank rank; /**< enum Rank rank represents the rank of the Square */
|
||||
File file; /**< enum File file represents the file of the Square */
|
||||
Rank rank; /**< rank represents the rank of the Square */
|
||||
File file; /**< file represents the file of the Square */
|
||||
|
||||
/**
|
||||
* A function to test if the square is a valid square on the chessboard
|
||||
|
|
@ -66,7 +66,7 @@ struct Square {
|
|||
return rank >= 0 && rank < 8 && file >= 0 && file < 8;
|
||||
}
|
||||
};
|
||||
/**
|
||||
/** @struct Move
|
||||
* A struct representing the start and end squares of a Move.
|
||||
*/
|
||||
struct Move {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue