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

@@ -95,6 +95,8 @@ typedef NzBox<double> NzBoxd;
typedef NzBox<float> NzBoxf;
typedef NzBox<int> NzBoxi;
typedef NzBox<unsigned int> NzBoxui;
typedef NzBox<nzInt32> NzBoxi32;
typedef NzBox<nzUInt32> NzBoxui32;
#include <Nazara/Math/Box.inl>