blob: f114265ebf359b92914c6b0fc619c151770b066a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|