diff options
Diffstat (limited to 'include/components/velocity.hpp')
-rw-r--r-- | include/components/velocity.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/components/velocity.hpp b/include/components/velocity.hpp new file mode 100644 index 0000000..2337ebd --- /dev/null +++ b/include/components/velocity.hpp @@ -0,0 +1,10 @@ +#ifndef COMPONENTS_VELOCITY_HPP +#define COMPONENTS_VELOCITY_HPP + +#include "vec2.hpp" + +struct Velocity : public Vec2 {}; + +#endif // COMPONENTS_VELOCITY_HPP + + |