diff options
Diffstat (limited to 'Runtime/Math/Vector3.h')
-rw-r--r-- | Runtime/Math/Vector3.h | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/Runtime/Math/Vector3.h b/Runtime/Math/Vector3.h index 08e2592..c0a35f3 100644 --- a/Runtime/Math/Vector3.h +++ b/Runtime/Math/Vector3.h @@ -1,17 +1,22 @@ #ifndef VECTOR3_H #define VECTOR3_H -struct Vector3 +namespace Internal { - float x, y, z; - inline void Set(float x, float y, float z) - { - this->x = x; - this->y = y; - this->z = z; - } + struct Vector3 + { + float x, y, z; -}; + inline void Set(float x, float y, float z) + { + this->x = x; + this->y = y; + this->z = z; + } + }; + + +} #endif
\ No newline at end of file |