1 2 3 4 5 6 7 8 9 10
#ifndef COMPONENTS_VELOCITY_HPP #define COMPONENTS_VELOCITY_HPP #include "vec2.hpp" struct Velocity : public Vec2 {}; #endif // COMPONENTS_VELOCITY_HPP