aboutsummaryrefslogtreecommitdiff
path: root/src/engine/vector2.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-02-18 19:31:03 +0100
committerHampusM <hampus@hampusmat.com>2022-02-18 19:31:03 +0100
commite206dc1cf625f28149c19eb4dfcbf495ef0efbb4 (patch)
treebdcc6152dbce14f27a17b1a33814b0f8e365969f /src/engine/vector2.hpp
parent3e4d91b6b029374813cfd0900db1fa8984ad7aa3 (diff)
refactor: improve options of all kindsHEADmaster
Diffstat (limited to 'src/engine/vector2.hpp')
-rw-r--r--src/engine/vector2.hpp4
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.