1 #ifndef BLANK_AI_CONTROLLER_HPP_
2 #define BLANK_AI_CONTROLLER_HPP_
12 explicit Controller(Entity &e) noexcept;
13 virtual ~Controller();
15 Entity &Controlled() noexcept { return entity; }
16 const Entity &Controlled() const noexcept { return entity; }
18 virtual void Update(int dt) = 0;