]> git.localhorst.tv Git - blank.git/blob - src/app/RandomWalk.hpp
some code reorganization
[blank.git] / src / app / RandomWalk.hpp
1 #ifndef BLANK_APP_RANDOMWALK_HPP_
2 #define BLANK_APP_RANDOMWALK_HPP_
3
4 #include <glm/glm.hpp>
5
6
7 namespace blank {
8
9 class Entity;
10
11 class RandomWalk {
12
13 public:
14         explicit RandomWalk(Entity &) noexcept;
15
16         void Update(int dt) noexcept;
17
18 private:
19         Entity &entity;
20
21         int time_left;
22
23 };
24
25 }
26
27 #endif