X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fai%2FController.hpp;fp=src%2Fai%2FController.hpp;h=0000000000000000000000000000000000000000;hb=150d065f431d665326fd8028748c48a74ad956bb;hp=d2d6b1cfdd63abfcc69eda17f406f799db49f94a;hpb=80a9a59d71a7b144c12f64cbef4644751bd54745;p=blank.git diff --git a/src/ai/Controller.hpp b/src/ai/Controller.hpp deleted file mode 100644 index d2d6b1c..0000000 --- a/src/ai/Controller.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef BLANK_AI_CONTROLLER_HPP_ -#define BLANK_AI_CONTROLLER_HPP_ - - -namespace blank { - -class Entity; - -class Controller { - -public: - explicit Controller(Entity &e) noexcept; - virtual ~Controller(); - - Entity &Controlled() noexcept { return entity; } - const Entity &Controlled() const noexcept { return entity; } - - virtual void Update(int dt) = 0; - -private: - Entity &entity; - -}; - -} - -#endif