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

@@ -87,6 +87,8 @@ typedef NzRect<double> NzRectd;
typedef NzRect<float> NzRectf;
typedef NzRect<int> NzRecti;
typedef NzRect<unsigned int> NzRectui;
typedef NzRect<nzInt32> NzRecti32;
typedef NzRect<nzUInt32> NzRectui32;
#include <Nazara/Math/Rect.inl>