diff options
Diffstat (limited to 'src/engine/data/vector2.hpp')
-rw-r--r-- | src/engine/data/vector2.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/data/vector2.hpp b/src/engine/data/vector2.hpp index 03c2562..da96e72 100644 --- a/src/engine/data/vector2.hpp +++ b/src/engine/data/vector2.hpp @@ -43,8 +43,13 @@ public: auto operator*(const Vector2 &rhs) const noexcept -> Vector2; auto operator==(const Vector2 &rhs) const noexcept -> bool; + auto operator!=(const Vector2 &rhs) const noexcept -> bool; auto operator<(const Vector2 &rhs) const noexcept -> bool; + auto operator>(const Vector2 &rhs) const noexcept -> bool; + + auto operator<=(const Vector2 &rhs) const noexcept -> bool; + auto operator>=(const Vector2 &rhs) const noexcept -> bool; /** * Returns Vector2({.x = 0, .y = 1}) |