You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
27 lines
532 B
C++
27 lines
532 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#include "Dataflow/GeometryCollectionNodesPlugin.h"
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
|
||
|
|
#include "Dataflow/DataflowNodeFactory.h"
|
||
|
|
#include "Dataflow/GeometryCollectionNodes.h"
|
||
|
|
|
||
|
|
#define LOCTEXT_NAMESPACE "DataflowNodes"
|
||
|
|
|
||
|
|
|
||
|
|
void IGeometryCollectionNodesPlugin::StartupModule()
|
||
|
|
{
|
||
|
|
Dataflow::GeometryCollectionEngineAssetNodes();
|
||
|
|
}
|
||
|
|
|
||
|
|
void IGeometryCollectionNodesPlugin::ShutdownModule()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
IMPLEMENT_MODULE(IGeometryCollectionNodesPlugin, GeometryCollectionNodes)
|
||
|
|
|
||
|
|
|
||
|
|
#undef LOCTEXT_NAMESPACE
|