Files
UnrealEngine/Engine/Source/Runtime/MovieScene/Public/Evaluation/PreAnimatedState/MovieScenePreAnimatedStorageID.inl
2025-05-18 13:04:45 +08:00

22 lines
529 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Evaluation/PreAnimatedState/MovieScenePreAnimatedStorageID.h"
#include "Evaluation/PreAnimatedState/MovieScenePreAnimatedStateExtension.h"
namespace UE
{
namespace MovieScene
{
template<typename StorageType>
TAutoRegisterPreAnimatedStorageID<StorageType>::TAutoRegisterPreAnimatedStorageID()
: TPreAnimatedStorageID<StorageType>{ FPreAnimatedStateExtension::template RegisterStorage<StorageType>() }
{}
} // namespace MovieScene
} // namespace UE