From 66991ce9b81f4af3c095d38fa2187837d94e5469 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 5 Aug 2024 10:33:14 -0400 Subject: refactor and split into headers --- include/components/velocity.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 include/components/velocity.hpp (limited to 'include/components/velocity.hpp') 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 + + -- cgit v1.2.3