You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
649 B
C
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;
|
||
|
|
};
|