]> git.localhorst.tv Git - blank.git/blob - src/ai/IdleState.hpp
AI state machine
[blank.git] / src / ai / IdleState.hpp
1 #ifndef BLANK_AI_IDLESTATE_HPP_
2 #define BLANK_AI_IDLESTATE_HPP_
3
4 #include "AIState.hpp"
5
6
7 namespace blank {
8
9 class IdleState
10 : public AIState {
11
12         void Enter(AIController &) const override;
13         void Update(AIController &, Entity &, float dt) const override;
14         void Exit(AIController &) const override;
15
16 };
17
18 }
19
20 #endif