diff options
author | Andy <drumsetmonkey@gmail.com> | 2017-01-06 08:46:29 -0500 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2017-01-06 08:46:29 -0500 |
commit | 37426dbe5fccd6702f1c98fb8a0e25910eeacb70 (patch) | |
tree | a1eef4f4537003adab160251e2bc4a65a6dd25ad /include | |
parent | cf0deda5f30eb3bf6b4ea6a1d47aa7dad115b799 (diff) | |
parent | cbd154a4834f56146dbe744ee2d2c6dccc04c5cb (diff) |
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'include')
-rw-r--r-- | include/components.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/components.hpp b/include/components.hpp index ed9a136..1deaf69 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -302,7 +302,12 @@ struct Dialog { /** * Causes the entity to hop around. */ -struct Hop {}; // TODO require wander, for range? +struct Hop { + Hop(float r = 0) + : hopRatio(r) {} + + float hopRatio; +}; /** * Causes the entity to wander about. |