pacman/lib/include/Pinky.hpp

21 lines
363 B
C++
Raw Normal View History

2021-07-28 13:28:36 +00:00
#pragma once
#include "Ghost.hpp"
namespace pacman {
class Pinky : public Ghost {
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