Files
UnrealEngineUWP/Engine/Source/Developer/SkeletalMeshUtilitiesCommon/Private/SkeletalMeshNotifier.cpp
2023-03-01 14:13:08 -05:00

15 lines
356 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SkeletalMeshNotifier.h"
FSkeletalMeshNotifyDelegate& ISkeletalMeshNotifier::Delegate()
{
return NotifyDelegate;
}
void ISkeletalMeshNotifier::Notify(const TArray<FName>& BoneNames, const ESkeletalMeshNotifyType InNotifyType) const
{
NotifyDelegate.Broadcast(BoneNames, InNotifyType);
}