Files
UnrealEngine/Engine/Plugins/Experimental/GeometryCollectionPlugin/Source/GeometryCollectionNodes/Public/Dataflow/GeometryCollectionNodesPlugin.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
351 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
#include "Modules/ModuleManager.h"
/**
* The public interface to this module
*/
class IGeometryCollectionNodesPlugin : public IModuleInterface
{
public:
virtual void StartupModule();
virtual void ShutdownModule();
};