Files
UnrealEngineUWP/Engine/Source/Runtime/Experimental/GeometryCollectionEngine/Private/GeometryCollection/GeometryCollectionComponentPlugin.cpp
Michael Lentine ea5ca985d4 Copying //UE4/Dev-Physics to //UE4/Dev-Main.
#rb none
#lockdown Nick.Penwarden

[CL 4653110 by Michael Lentine in Main branch]
2018-12-12 11:25:29 -05:00

35 lines
624 B
C++

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
#include "GeometryCollection/GeometryCollectionComponentPlugin.h"
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
class FGeometryCollectionComponentPlugin : public IGeometryCollectionComponentPlugin
{
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};
IMPLEMENT_MODULE( FGeometryCollectionComponentPlugin, GeometryCollectionComponent )
void FGeometryCollectionComponentPlugin::StartupModule()
{
}
void FGeometryCollectionComponentPlugin::ShutdownModule()
{
}