2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
/*=============================================================================
|
|
|
|
|
LinuxTargetSettings.h: Declares the ULinuxTargetSettings class.
|
|
|
|
|
=============================================================================*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "LinuxTargetSettings.generated.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implements the settings for the Android target platform.
|
|
|
|
|
*/
|
2014-08-04 18:19:51 -04:00
|
|
|
UCLASS(config=Engine, defaultconfig)
|
2014-03-14 14:13:41 -04:00
|
|
|
class LINUXTARGETPLATFORM_API ULinuxTargetSettings
|
|
|
|
|
: public UObject
|
|
|
|
|
{
|
2015-03-17 05:19:11 -04:00
|
|
|
public:
|
2015-03-17 05:38:32 -04:00
|
|
|
|
|
|
|
|
GENERATED_UCLASS_BODY()
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2014-08-04 18:19:51 -04:00
|
|
|
/**
|
|
|
|
|
* 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;
|
2014-03-14 14:13:41 -04:00
|
|
|
};
|