pacman/lib/include/Pinky.hpp

21 lines
369 B
C++
Raw Normal View History

2021-07-28 13:28:36 +00:00
#pragma once
#include "Ghost.hpp"
namespace pacman {
2021-07-28 15:01:22 +00:00
class Pinky final : public Ghost {
2021-07-28 13:28:36 +00:00
public:
explicit Pinky();
protected:
double speed(const GameState & gameState) const override;
Position target(const GameState & gameState) const override;
Position initialPosition() const override;
private:
Position scatterTarget() const;
2021-07-28 13:28:36 +00:00
};
} // namespace pacman