You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
19 lines
690 B
C
19 lines
690 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
/*------------------------------------------------------------------------------------
|
||
|
|
IAndroidTargetPlatformSettingsModule interface
|
||
|
|
------------------------------------------------------------------------------------*/
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
#include "Interfaces/ITargetPlatformSettingsModule.h"
|
||
|
|
#include "AndroidTargetPlatformSettings.h"
|
||
|
|
|
||
|
|
class IAndroidTargetPlatformSettingsModule : public ITargetPlatformSettingsModule
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual void GetSinglePlatformSettings(TMap<EAndroidTextureFormatCategory, ITargetPlatformSettings*>& OutMap) = 0;
|
||
|
|
virtual ITargetPlatformSettings* GetMultiPlatformSettings() = 0;
|
||
|
|
};
|