aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/velocity.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-08-05 10:33:14 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-08-05 10:33:14 -0400
commit66991ce9b81f4af3c095d38fa2187837d94e5469 (patch)
treef889b93e33ad346e69f070da3fa9f8af9c943393 /include/components/velocity.hpp
parentb2eb646979b9cdcef4f9edfbcc2e2309b1f57a18 (diff)
refactor and split into headers
Diffstat (limited to 'include/components/velocity.hpp')
-rw-r--r--include/components/velocity.hpp10
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
+
+