Fixed forgotten file in last commit

Former-commit-id: ac75cc7dacda565f0a12ac0afa58cf939b2b2e5d
This commit is contained in:
Lynix 2013-06-04 14:52:12 +02:00
parent 9239ff8881
commit 573b4ebf79
1 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@
#define NAZARA_PRIMITIVE_HPP #define NAZARA_PRIMITIVE_HPP
#include <Nazara/Core/Enums.hpp> #include <Nazara/Core/Enums.hpp>
#include <Nazara/Math/Cube.hpp> #include <Nazara/Math/Box.hpp>
#include <Nazara/Math/Matrix4.hpp> #include <Nazara/Math/Matrix4.hpp>
#include <Nazara/Math/Plane.hpp> #include <Nazara/Math/Plane.hpp>
#include <Nazara/Math/Vector3.hpp> #include <Nazara/Math/Vector3.hpp>
@ -21,11 +21,11 @@ struct NzPrimitive
{ {
struct struct
{ {
NzCubef cube;
NzMatrix4f matrix; NzMatrix4f matrix;
NzVector3f lengths;
NzVector3ui subdivision; NzVector3ui subdivision;
} }
cube; box;
struct struct
{ {