Added missing SkeletonRef typedef

Former-commit-id: 7c6671664dcc28e2fc8f2a0beeacb76b80828f4f
This commit is contained in:
Lynix 2015-01-18 14:30:30 +01:00
parent 0b1f10bf72
commit a6183fae69
1 changed files with 6 additions and 0 deletions

View File

@ -9,10 +9,16 @@
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Core/Resource.hpp>
#include <Nazara/Core/ResourceRef.hpp>
#include <Nazara/Math/Box.hpp>
#include <Nazara/Utility/Joint.hpp>
#include <vector>
class NzSkeleton;
using NzSkeletonConstRef = NzResourceRef<const NzSkeleton>;
using NzSkeletonRef = NzResourceRef<NzSkeleton>;
struct NzSkeletonImpl;
class NAZARA_API NzSkeleton : public NzResource