]> git.localhorst.tv Git - blank.git/blobdiff - src/world/EntityController.hpp
tests for TokenStreamReader
[blank.git] / src / world / EntityController.hpp
index 8b14ca8a3d9606c687ba9c35da1107fa4682bb6d..2724c5e9c8278e67858d3da5d384a24fa26c3796 100644 (file)
@@ -1,13 +1,9 @@
 #ifndef BLANK_WORLD_ENTITYCONTROLLER_HPP_
 #define BLANK_WORLD_ENTITYCONTROLLER_HPP_
 
-#include <glm/glm.hpp>
-
-
 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;
-
 };
 
 }