You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix CIS #jira UE-59739 #rb andrew.rodham [FYI] mike.zyracki #ROBOMERGE-SOURCE: CL 4099511 in //UE4/Release-4.20/... #ROBOMERGE-BOT: RELEASE (Release-4.20 -> Release-Staging-4.20) [CL 4099512 by max chen in Staging-4.20 branch]
20 lines
519 B
C++
20 lines
519 B
C++
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "GeometryCacheTracksModule.h"
|
|
#if WITH_EDITOR
|
|
#include "GeometryCacheSequencerModule.h"
|
|
#endif // WITH_EDITOR
|
|
|
|
IMPLEMENT_MODULE(FGeometryCacheTracksModule, GeometryCacheTracks)
|
|
|
|
void FGeometryCacheTracksModule::StartupModule()
|
|
{
|
|
#if WITH_EDITOR
|
|
FGeometryCacheSequencerModule& Module = FModuleManager::LoadModuleChecked<FGeometryCacheSequencerModule>(TEXT("GeometryCacheSequencer"));
|
|
#endif
|
|
}
|
|
|
|
void FGeometryCacheTracksModule::ShutdownModule()
|
|
{
|
|
}
|