Files
UnrealEngine/Engine/Plugins/Animation/PoseSearch/Source/Runtime/Private/PoseHistoryProvider.cpp
2025-05-18 13:04:45 +08:00

15 lines
355 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "PoseSearch/PoseHistoryProvider.h"
#include "PoseSearch/AnimNode_PoseSearchHistoryCollector.h"
namespace UE::PoseSearch
{
const IPoseHistory& FPoseHistoryProvider::GetPoseHistory() const
{
check(HistoryCollector);
return HistoryCollector->GetPoseHistory();
}
} // namespace UE::PoseSearch