Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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