Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Public/Interfaces/IShaderFormatModule.h
2014-03-14 14:13:41 -04:00

28 lines
547 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
IShaderFormatModule.h: Declares the IShaderFormatModule interface.
=============================================================================*/
#pragma once
/**
* Interface for shader format modules.
*/
class IShaderFormatModule
: public IModuleInterface
{
public:
/**
* Gets the shader format.
*/
virtual IShaderFormat* GetShaderFormat() = 0;
protected:
IShaderFormatModule() { }
};