Added a Library to most reference-counted classes
Former-commit-id: 3ed409a71dcd5ce4eec7672ac26f8fff00e3b136
This commit is contained in:
@@ -416,3 +416,21 @@ void NzSkeleton::UpdateJointMap() const
|
||||
|
||||
m_impl->jointMapUpdated = true;
|
||||
}
|
||||
|
||||
bool NzSkeleton::Initialize()
|
||||
{
|
||||
if (!NzSkeletonLibrary::Initialize())
|
||||
{
|
||||
NazaraError("Failed to initialise library");
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void NzSkeleton::Uninitialize()
|
||||
{
|
||||
NzSkeletonLibrary::Uninitialize();
|
||||
}
|
||||
|
||||
NzSkeletonLibrary::LibraryMap NzSkeleton::s_library;
|
||||
|
||||
Reference in New Issue
Block a user