diff options
Diffstat (limited to 'Runtime/Math/Math.h')
| -rw-r--r-- | Runtime/Math/Math.h | 11 | 
1 files changed, 9 insertions, 2 deletions
diff --git a/Runtime/Math/Math.h b/Runtime/Math/Math.h index 80f23f7..0d1590e 100644 --- a/Runtime/Math/Math.h +++ b/Runtime/Math/Math.h @@ -8,11 +8,18 @@  #include "Rect.h"  #include "MathHelper.h" -typedef Internal::Vector3  Vector3; -typedef Internal::Vector4  Vector4; +  typedef Internal::Matrix44 Matrix44;  typedef Internal::Rect     Rect;  typedef Internal::Vector2T<int> Vector2i;  typedef Internal::Vector2T<float> Vector2f; +typedef Vector2f Vector2; + +typedef Internal::Vector3T<float>  Vector3f; +typedef Internal::Vector3T<int>  Vector3i; +typedef Vector3f Vector3; +typedef Internal::Vector4T<float>  Vector4f; +typedef Internal::Vector4T<int>  Vector4i; +typedef Vector4f Vector4;  | 
