]> git.localhorst.tv Git - blank.git/blobdiff - src/ai/IdleState.hpp
AI state machine
[blank.git] / src / ai / IdleState.hpp
diff --git a/src/ai/IdleState.hpp b/src/ai/IdleState.hpp
new file mode 100644 (file)
index 0000000..76358f8
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef BLANK_AI_IDLESTATE_HPP_
+#define BLANK_AI_IDLESTATE_HPP_
+
+#include "AIState.hpp"
+
+
+namespace blank {
+
+class IdleState
+: public AIState {
+
+       void Enter(AIController &) const override;
+       void Update(AIController &, Entity &, float dt) const override;
+       void Exit(AIController &) const override;
+
+};
+
+}
+
+#endif