]> git.localhorst.tv Git - blank.git/blobdiff - src/ai/AIState.hpp
fix box/box intersection test …again
[blank.git] / src / ai / AIState.hpp
index ed82cc09d9fcabeb196ebd27650a3fb5645395db..7642ebdc3ecf630583f6e5c0e3df88a9c091a152 100644 (file)
@@ -6,9 +6,9 @@ namespace blank {
 
 struct AIState {
 
-       virtual void Enter(AIController &) const = 0;
+       virtual void Enter(AIController &, Entity &) const = 0;
        virtual void Update(AIController &, Entity &, float dt) const = 0;
-       virtual void Exit(AIController &) const = 0;
+       virtual void Exit(AIController &, Entity &) const = 0;
 
 };