Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Public/Interfaces/IProjectBuildMutatorFeature.h
Juan Canada 2ecf4f9708 Merging //UE4/Dev-Main@10877709 to Dev-RenderPlat-Staging(//UE4/Dev-Rendering)
#rnx
#rb none

[CL 10895568 by Juan Canada in Dev-RenderPlat-Staging branch]
2020-01-07 13:45:01 -05:00

15 lines
367 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Features/IModularFeature.h"
#define PROJECT_BUILD_MUTATOR_FEATURE "ProjectBuildMutatorFeature"
class IProjectBuildMutatorFeature : public IModularFeature
{
public:
virtual bool RequiresProjectBuild(const FName& InPlatformInfoName, FText& OutReason) const = 0;
};