Added (U)Int32 typedef for Box,Rect and VectorI classes

Former-commit-id: 20fcc8e7ccde6f5306c08058ad477e81cfb2d204
This commit is contained in:
Lynix
2014-06-30 10:52:25 +02:00
parent 53e5944b56
commit d9c38181a5
5 changed files with 11 additions and 0 deletions

View File

@@ -90,6 +90,9 @@ template<typename T> NzVector4<T> operator/(T scale, const NzVector4<T>& vec);
typedef NzVector4<double> NzVector4d;
typedef NzVector4<float> NzVector4f;
typedef NzVector4<int> NzVector4i;
typedef NzVector4<unsigned int> NzVector4ui;
typedef NzVector4<nzInt32> NzVector4i32;
typedef NzVector4<nzUInt32> NzVector4ui32;
#include <Nazara/Math/Vector4.inl>