diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-15 19:57:02 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:59 +0200 |
commit | 019337908e37ffee9b624b313e9d7f885bff9781 (patch) | |
tree | 7f8ba5e8b12fff7723b1af2317c3fba52c0c7011 /src/engine/data/vector2.hpp | |
parent | 741a6008e806abb8e5aaa8f8fb91827fa97ece9d (diff) |
style: change braced list & bracket style
Diffstat (limited to 'src/engine/data/vector2.hpp')
-rw-r--r-- | src/engine/data/vector2.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/data/vector2.hpp b/src/engine/data/vector2.hpp index a6de35e..15df88f 100644 --- a/src/engine/data/vector2.hpp +++ b/src/engine/data/vector2.hpp @@ -48,7 +48,7 @@ public: */ static constexpr auto up() noexcept -> Vector2 { - return Vector2({ .x = 0, .y = -1 }); + return Vector2({.x = 0, .y = -1}); } /** @@ -56,7 +56,7 @@ public: */ static constexpr auto down() noexcept -> Vector2 { - return Vector2({ .x = 0, .y = 1 }); + return Vector2({.x = 0, .y = 1}); } /** @@ -65,7 +65,7 @@ public: static constexpr auto left() noexcept -> Vector2 { - return Vector2({ .x = -1, .y = 0 }); + return Vector2({.x = -1, .y = 0}); } /** @@ -73,7 +73,7 @@ public: */ static constexpr auto right() noexcept -> Vector2 { - return Vector2({ .x = 1, .y = 0 }); + return Vector2({.x = 1, .y = 0}); } private: |