#ifndef SRC_MOVES_H_ #define SRC_MOVES_H_ #include "board.hpp" #include std::vector GetLegalMoves(board *b); Position IndexToPosition(int i); void GenerateSlidingMoves(board *b, int from, const std::array &directions, std::vector &moves); #endif /* SRC_MOVES_H_ */