extracted coords to its own hpp

This commit is contained in:
Karma Riuk
2025-02-02 20:17:27 +01:00
parent e08dbb913e
commit 8bf164cb05
4 changed files with 21 additions and 12 deletions

View File

@ -1,4 +1,5 @@
#include "../board.hpp"
#include "../coords.hpp"
#include "../move.hpp"
#include "piece.hpp"

View File

@ -1,6 +1,7 @@
#include "piece.hpp"
#include "../board.hpp"
#include "../coords.hpp"
std::vector<Move>
keep_only_blocking(const std::vector<Move> candidates, const Board& board) {