diff options
Diffstat (limited to 'Runtime/Math/Math.h')
-rw-r--r-- | Runtime/Math/Math.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Runtime/Math/Math.h b/Runtime/Math/Math.h index 7f61544..aaeb264 100644 --- a/Runtime/Math/Math.h +++ b/Runtime/Math/Math.h @@ -9,3 +9,9 @@ #define max(a, b)\ (a)>(b)?(a):(b) + +typedef Internal::Vector2 Vector2; +typedef Internal::Vector3 Vector3; +typedef Internal::Vector4 Vector4; +typedef Internal::Matrix44 Matrix44; +typedef Internal::Rect Rect; |