From 779fd068b6aadef909aefdd25d6ec4086300dde2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 6 Aug 2024 10:32:26 -0400 Subject: easier initializaton --- include/components/velocity.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/components/velocity.hpp') 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 tup): Vec2(tup) {} +}; #endif // COMPONENTS_VELOCITY_HPP -- cgit v1.2.3