Fix build
This commit is contained in:
parent
1e219e7695
commit
c053b38c03
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue