Files
UnrealEngine/Engine/Plugins/Experimental/GeometryDataflow/Source/GeometryDataflowNodes/Public/GeometryDataflowNodesPlugin.h
2025-05-18 13:04:45 +08:00

19 lines
349 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 IGeometryDataflowNodesPlugin : public IModuleInterface
{
public:
virtual void StartupModule();
virtual void ShutdownModule();
};