Files
UnrealEngine/Engine/Source/Developer/Android/AndroidTargetPlatform/Public/IAndroidTargetPlatformModule.h
2025-05-18 13:04:45 +08:00

20 lines
625 B
C++

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