diff options
Diffstat (limited to 'include/components/hop.hpp')
-rw-r--r-- | include/components/hop.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/components/hop.hpp b/include/components/hop.hpp new file mode 100644 index 0000000..f114265 --- /dev/null +++ b/include/components/hop.hpp @@ -0,0 +1,14 @@ +#ifndef COMPONENTS_HOP_HPP_ +#define COMPONENTS_HOP_HPP_ + +/** + * Causes the entity to hop around. + */ +struct Hop { + Hop(float r = 0) + : hopRatio(r) {} + + float hopRatio; +}; + +#endif // COMPONENTS_HOP_HPP |