Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Public/Interfaces/IShaderFormatModule.h
T

30 lines
462 B
C++
Raw Normal View History

2019-12-26 15:32:37 -05:00
// 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.
2014-09-21 20:35:48 -04:00
*
* @return The shader format interface.
*/
virtual IShaderFormat* GetShaderFormat() = 0;
public:
2014-09-21 20:35:48 -04:00
/** Virtual destructor. */
~IShaderFormatModule() { }
};