diff options
author | chai <chaifix@163.com> | 2021-11-01 19:30:44 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-11-01 19:30:44 +0800 |
commit | 4b652abe1d76f1bcbe5d7583a8986256f50c483d (patch) | |
tree | daf81888f8e37c40483fcd309201bc33471b97fa /Runtime/Math/Math.h | |
parent | b7310c9cce95bfc9bfe135063ee0e97fbc654928 (diff) |
-LuaBindClass::RegisterNativeClass
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; |