1 #ifndef BLANK_AI_CHASER_HPP_
2 #define BLANK_AI_CHASER_HPP_
4 #include "Controller.hpp"
15 Chaser(World &, Entity &ctrl, Entity &tgt) noexcept;
18 Entity &Target() noexcept { return tgt; }
19 const Entity &Target() const noexcept { return tgt; }
21 void Update(int dt) override;