#pragma once #include struct Vector2Options { int32_t x; int32_t y; }; /** * A 2D Vector. */ class Vector2 { public: explicit Vector2(const Vector2Options &options); [[nodiscard]] int32_t get_x() const noexcept; void set_x(int32_t x) noexcept; [[nodiscard]] int32_t get_y() const noexcept; void set_y(int32_t y) noexcept; const Vector2 &operator+=(const Vector2 &vector2) noexcept; const Vector2 &operator-=(const Vector2 &vector2) noexcept; private: int32_t _x; int32_t _y; };