pacman/exercises/17/make_ghost/solution/Clyde.hpp

21 lines
317 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 Clyde final : public Ghost {
2021-07-28 13:28:36 +00:00
public:
explicit Clyde();
void setTarget(Position pacManPos);
protected:
double speed() const override;
Position initialPosition() const override;
private:
Position scatterTarget() const;
2021-07-28 13:28:36 +00:00
};
} // namespace pacman