Fix build

This commit is contained in:
Corentin Jabot 2021-10-06 11:37:48 +02:00
parent 1e219e7695
commit c053b38c03

View file

@ -16,21 +16,21 @@ Direction PacManAI::suggestedDirection() const {
// This function is not yet implemented. // This function is not yet implemented.
// You will implement it as part of module 25. // You will implement it as part of module 25.
GridPosition PacManAI::pelletClosestToPacman(GridPosition pacmanGridPosition, GridPosition PacManAI::pelletClosestToPacman(GridPosition,
std::vector<GridPosition> & pellets) { std::vector<GridPosition> &) {
return {0, 0}; return {0, 0};
} }
// This function is not yet implemented. // This function is not yet implemented.
// You will implement it as part of module 25. // You will implement it as part of module 25.
bool PacManAI::isValidMove(const Move & move) { bool PacManAI::isValidMove(const Move &) {
return false; return false;
} }
// This function is not yet implemented. // This function is not yet implemented.
// You will implement it as part of module 25. // You will implement it as part of module 25.
Direction PacManAI::optimalDirection(const std::array<Move, 4> & moves) { Direction PacManAI::optimalDirection(const std::array<Move, 4> &) {
return Direction::NONE; return Direction::NONE;
} }