aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/velocity.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-08-06 10:32:26 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-08-06 10:32:26 -0400
commit779fd068b6aadef909aefdd25d6ec4086300dde2 (patch)
treebdfe50ccc58fb2995968f8191935eec25bc072f2 /include/components/velocity.hpp
parent189afb447e2c76e5dd5e4550e786c5175a828cbc (diff)
easier initializaton
Diffstat (limited to 'include/components/velocity.hpp')
-rw-r--r--include/components/velocity.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/components/velocity.hpp b/include/components/velocity.hpp
index 2337ebd..96b8673 100644
--- a/include/components/velocity.hpp
+++ b/include/components/velocity.hpp
@@ -3,7 +3,11 @@
#include "vec2.hpp"
-struct Velocity : public Vec2 {};
+struct Velocity : public Vec2 {
+ constexpr Velocity() = default;
+ constexpr Velocity(float x_, float y_): Vec2(x_, y_) {}
+ Velocity(std::tuple<float, float> tup): Vec2(tup) {}
+};
#endif // COMPONENTS_VELOCITY_HPP