]> git.localhorst.tv Git - blank.git/blobdiff - src/app/RandomWalk.hpp
move RandomWalk into new "ai" module
[blank.git] / src / app / RandomWalk.hpp
diff --git a/src/app/RandomWalk.hpp b/src/app/RandomWalk.hpp
deleted file mode 100644 (file)
index 0a61974..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef BLANK_APP_RANDOMWALK_HPP_
-#define BLANK_APP_RANDOMWALK_HPP_
-
-#include <glm/glm.hpp>
-
-
-namespace blank {
-
-class Entity;
-
-/// Randomly start or stop moving in axis directions every now and then.
-class RandomWalk {
-
-public:
-       explicit RandomWalk(Entity &) noexcept;
-
-       void Update(int dt) noexcept;
-
-private:
-       Entity &entity;
-
-       int time_left;
-
-};
-
-}
-
-#endif