]> git.localhorst.tv Git - blank.git/blobdiff - src/ai/IdleState.hpp
different docker exec approach
[blank.git] / src / ai / IdleState.hpp
index 76358f8eb6b65aa3f47d169f393eb1596a9f8191..ec2592a713e28f519d0faf05576557b00e316f9a 100644 (file)
@@ -6,12 +6,17 @@
 
 namespace blank {
 
+/// stand around and do nothing
+/// occasionally look in a different direction
+/// start roaming at random
+/// start chasing a player if one comes near
+
 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;
 
 };