24 lines
442 B
C++
24 lines
442 B
C++
#pragma once
|
|
|
|
#include "Blinky.hpp"
|
|
#include "Direction.hpp"
|
|
#include "Inky.hpp"
|
|
#include "PacMan.hpp"
|
|
#include "Pellets.hpp"
|
|
#include "Pinky.hpp"
|
|
#include "Position.hpp"
|
|
#include "SuperPellets.hpp"
|
|
|
|
namespace pacman {
|
|
|
|
class PacManAI {
|
|
public:
|
|
void update(const PacMan & pacMan, const Pellets & pellets);
|
|
Direction suggestedDirection() const;
|
|
|
|
private:
|
|
Position pos;
|
|
Direction direction = Direction::RIGHT;
|
|
};
|
|
|
|
} // namespace pacman
|