]> git.localhorst.tv Git - blank.git/blobdiff - src/ai/IdleState.hpp
fix AI chase/flee acceleration
[blank.git] / src / ai / IdleState.hpp
index b663d9164fc459ab20be2076476ebd230f912c7a..ec2592a713e28f519d0faf05576557b00e316f9a 100644 (file)
@@ -14,9 +14,9 @@ namespace blank {
 class IdleState
 : public AIState {
 
-       void Enter(AIController &) const override;
+       void Enter(AIController &, Entity &) const override;
        void Update(AIController &, Entity &, float dt) const override;
-       void Exit(AIController &) const override;
+       void Exit(AIController &, Entity &) const override;
 
 };