aboutsummaryrefslogtreecommitdiff
path: root/src/engine/data/vector2.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/data/vector2.hpp')
-rw-r--r--src/engine/data/vector2.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/data/vector2.hpp b/src/engine/data/vector2.hpp
index 96ebf87..b83e924 100644
--- a/src/engine/data/vector2.hpp
+++ b/src/engine/data/vector2.hpp
@@ -5,8 +5,8 @@
struct Vector2Options
{
- int32_t x;
- int32_t y;
+ std::int32_t x;
+ std::int32_t y;
};
/**
@@ -15,7 +15,7 @@ struct Vector2Options
class Vector2
{
public:
- using Value = int32_t;
+ using Value = std::int32_t;
constexpr explicit Vector2(const Vector2Options &options) noexcept
: _x(options.x), _y(options.y)