2015-06-18 06:59:14 -04:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
#include "GeometryCacheModulePrivatePCH.h"
|
|
|
|
|
#include "GeometryCacheModule.h"
|
2015-06-18 18:46:15 -04:00
|
|
|
#include "GeometryCacheComponent.h"
|
2015-09-07 09:32:51 -04:00
|
|
|
#include "ModuleManager.h"
|
|
|
|
|
#include "GeometryCacheEdModule.h"
|
2015-06-18 06:59:14 -04:00
|
|
|
|
|
|
|
|
IMPLEMENT_MODULE(FGeometryCacheModule, GeometryCache)
|
|
|
|
|
|
|
|
|
|
void FGeometryCacheModule::StartupModule()
|
|
|
|
|
{
|
2015-09-07 09:32:51 -04:00
|
|
|
#if WITH_EDITOR
|
|
|
|
|
FGeometryCacheEdModule& Module = FModuleManager::LoadModuleChecked<FGeometryCacheEdModule>(TEXT("GeometryCacheEd"));
|
|
|
|
|
#endif
|
2015-06-18 06:59:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FGeometryCacheModule::ShutdownModule()
|
|
|
|
|
{
|
2015-09-07 09:32:51 -04:00
|
|
|
}
|