Files
UnrealEngineUWP/Engine/Source/Developer/Linux/LinuxTargetPlatform/Classes/LinuxTargetSettings.h
Dmitry Rekman 1072d6a415 Support multiple RHIs on Linux.
- Part of PR #306 by amigo and #ue4linux folks.

#codereview Josh.Adams

[CL 2242720 by Dmitry Rekman in Main branch]
2014-08-04 18:19:51 -04:00

30 lines
780 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
LinuxTargetSettings.h: Declares the ULinuxTargetSettings class.
=============================================================================*/
#pragma once
#include "LinuxTargetSettings.generated.h"
/**
* Implements the settings for the Android target platform.
*/
UCLASS(config=Engine, defaultconfig)
class LINUXTARGETPLATFORM_API ULinuxTargetSettings
: public UObject
{
public:
GENERATED_UCLASS_BODY()
/**
* The collection of RHI's we want to support on this platform.
* This is not always the full list of RHI we can support.
*/
UPROPERTY(EditAnywhere, config, Category=Rendering)
TArray<FString> TargetedRHIs;
};