diff options
Diffstat (limited to 'include/components.hpp')
-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. |