You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
519 B
C++
20 lines
519 B
C++
// Copyright 1998-2019 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()
|
|
{
|
|
}
|