Files
UnrealEngine/Engine/Source/Developer/TargetPlatform/Public/Interfaces/IShaderFormatModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

30 lines
462 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
class IShaderFormat;
/**
* Interface for shader format modules.
*/
class IShaderFormatModule
: public IModuleInterface
{
public:
/**
* Gets the shader format.
*
* @return The shader format interface.
*/
virtual IShaderFormat* GetShaderFormat() = 0;
public:
/** Virtual destructor. */
~IShaderFormatModule() { }
};