diff options
author | HampusM <hampus@hampusmat.com> | 2022-02-18 19:31:03 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-02-18 19:31:03 +0100 |
commit | e206dc1cf625f28149c19eb4dfcbf495ef0efbb4 (patch) | |
tree | bdcc6152dbce14f27a17b1a33814b0f8e365969f /src/engine/vector2.hpp | |
parent | 3e4d91b6b029374813cfd0900db1fa8984ad7aa3 (diff) |
Diffstat (limited to 'src/engine/vector2.hpp')
-rw-r--r-- | src/engine/vector2.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/vector2.hpp b/src/engine/vector2.hpp index f69008f..e0c0d6b 100644 --- a/src/engine/vector2.hpp +++ b/src/engine/vector2.hpp @@ -2,7 +2,7 @@ #include <memory> -struct Vector2Opts +struct Vector2Options { unsigned int x; unsigned int y; @@ -17,7 +17,7 @@ public: /** * Creates a 2D vector. */ - explicit Vector2(Vector2Opts opts); + explicit Vector2(const Vector2Options &options); /** * Returns the X coordinate. |