| 18 | class Vector2 : public ::Vector2 { |
| 19 | public: |
| 20 | constexpr Vector2(const ::Vector2& vec) : ::Vector2{vec.x, vec.y} {} |
| 21 | |
| 22 | constexpr Vector2(float x = 0, float y = 0) : ::Vector2{x, y} {} |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected