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