aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy <drumsetmonkey@gmail.com>2017-01-06 08:46:29 -0500
committerAndy <drumsetmonkey@gmail.com>2017-01-06 08:46:29 -0500
commit37426dbe5fccd6702f1c98fb8a0e25910eeacb70 (patch)
treea1eef4f4537003adab160251e2bc4a65a6dd25ad /include
parentcf0deda5f30eb3bf6b4ea6a1d47aa7dad115b799 (diff)
parentcbd154a4834f56146dbe744ee2d2c6dccc04c5cb (diff)
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'include')
-rw-r--r--include/components.hpp7
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.