X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FRandomWalk.hpp;fp=src%2Fapp%2FRandomWalk.hpp;h=0000000000000000000000000000000000000000;hb=745729c1935276e6f49d108a0a465214aa93c3cb;hp=0a61974fb2281c03b65ed4e9f6c363782bf44cad;hpb=12744a2f68b3c9496076d6d7b6fb3581ff78472a;p=blank.git diff --git a/src/app/RandomWalk.hpp b/src/app/RandomWalk.hpp deleted file mode 100644 index 0a61974..0000000 --- a/src/app/RandomWalk.hpp +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef BLANK_APP_RANDOMWALK_HPP_ -#define BLANK_APP_RANDOMWALK_HPP_ - -#include - - -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