You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-152476 #rb Johan.Duparc #preflight 631a3c98ec45fbf3d73e8198 [CL 21921658 by anousack kitisa in ue5-main branch]
22 lines
575 B
C++
22 lines
575 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "GeometryCacheTracksModule.h"
|
|
#include "GeometryCacheModule.h"
|
|
#if WITH_EDITOR
|
|
#include "GeometryCacheSequencerModule.h"
|
|
#endif // WITH_EDITOR
|
|
|
|
IMPLEMENT_MODULE(FGeometryCacheTracksModule, GeometryCacheTracks)
|
|
|
|
void FGeometryCacheTracksModule::StartupModule()
|
|
{
|
|
LLM_SCOPE_BYTAG(GeometryCache);
|
|
#if WITH_EDITOR
|
|
FGeometryCacheSequencerModule& Module = FModuleManager::LoadModuleChecked<FGeometryCacheSequencerModule>(TEXT("GeometryCacheSequencer"));
|
|
#endif
|
|
}
|
|
|
|
void FGeometryCacheTracksModule::ShutdownModule()
|
|
{
|
|
}
|