Files
UnrealEngineUWP/Engine/Source/Developer/Android/AndroidTargetPlatformControls/Public/IAndroidTargetPlatformControlsModule.h
florin pascu 367836ea48 First part of TargetPlatform(TP) refactor into TargetPlatformSettings(TPS) and TargetPlatformControls(TPC)
TPS doesn't need SDK and will be used to get info about the platform
TPC requires SDK
AndroidTP has been converted to the new system
#jira UE-200883
#rb Jack.Porter

[CL 30963885 by florin pascu in ue5-main branch]
2024-01-29 04:50:19 -05:00

20 lines
649 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
/*------------------------------------------------------------------------------------
IAndroid_MultiTargetPlatformModule interface
------------------------------------------------------------------------------------*/
#include "CoreMinimal.h"
#include "Interfaces/ITargetPlatformControlsModule.h"
class IAndroidTargetPlatformControlsModule : public ITargetPlatformControlsModule
{
public:
//
// Called by AndroidRuntimeSettings to notify us when the user changes the selected texture formats for the Multi format
//
virtual void NotifyMultiSelectedFormatsChanged() = 0;
};