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

@@ -119,6 +119,8 @@ typedef NzVector3<double> NzVector3d;
typedef NzVector3<float> NzVector3f;
typedef NzVector3<int> NzVector3i;
typedef NzVector3<unsigned int> NzVector3ui;
typedef NzVector3<nzInt32> NzVector3i32;
typedef NzVector3<nzUInt32> NzVector3ui32;
#include <Nazara/Math/Vector3.inl>