X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FEntityController.hpp;h=2724c5e9c8278e67858d3da5d384a24fa26c3796;hb=2ad195d00eea2c4d48f3f1a3ccc60a8176e7da20;hp=8b14ca8a3d9606c687ba9c35da1107fa4682bb6d;hpb=150d065f431d665326fd8028748c48a74ad956bb;p=blank.git diff --git a/src/world/EntityController.hpp b/src/world/EntityController.hpp index 8b14ca8..2724c5e 100644 --- a/src/world/EntityController.hpp +++ b/src/world/EntityController.hpp @@ -1,13 +1,9 @@ #ifndef BLANK_WORLD_ENTITYCONTROLLER_HPP_ #define BLANK_WORLD_ENTITYCONTROLLER_HPP_ -#include - - namespace blank { class Entity; -class EntityState; struct EntityController { @@ -15,8 +11,6 @@ struct EntityController { virtual void Update(Entity &, float dt) = 0; - virtual glm::vec3 ControlForce(const EntityState &) const = 0; - }; }