pacman/lib/Pellets.cpp

14 lines
330 B
C++
Raw Normal View History

#include "Pellets.hpp"
2021-06-16 11:59:16 +00:00
#include <algorithm>
Pellets::Pellets(const Board & board)
: positions(board.initialPelletPositions()) {}
2021-06-16 11:59:16 +00:00
bool Pellets::eatPelletAtPosition(Position p) {
auto it = std::find(positions.begin(), positions.end(), p);
if (it == positions.end())
return false;
positions.erase(it);
return true;
}