15 lines
355 B
C++
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
|