Files
UnrealEngine/Engine/Plugins/Experimental/RenderGrid/Source/RenderGridDeveloper/Private/RenderGridDeveloperModule.h
2025-05-18 13:04:45 +08:00

23 lines
474 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "IRenderGridDeveloperModule.h"
namespace UE::RenderGrid::Private
{
/**
* The implementation of the IRenderGridDeveloperModule interface.
*/
class FRenderGridDeveloperModule : public IRenderGridDeveloperModule
{
public:
//~ Begin IModuleInterface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
//~ End IModuleInterface
};
}