You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Removed includes (using IWYU) in private files #preflight 63c79978ac35a0e9dabbe408 #rb none [CL 23770038 by henrik karlsson in ue5-main branch]
23 lines
581 B
C++
23 lines
581 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "GeometryCacheTracksModule.h"
|
|
#if WITH_EDITOR
|
|
#include "GeometryCacheSequencerModule.h"
|
|
#else
|
|
#include "GeometryCacheModule.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()
|
|
{
|
|
}
|