Files
UnrealEngineUWP/Engine/Source/Developer/BlueprintNativeCodeGen/Private/NativeCodeGenCommandlineParams.h
2015-09-24 18:57:23 -04:00

25 lines
544 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
/** */
struct FNativeCodeGenCommandlineParams
{
public:
static const FString HelpMessage;
public:
FNativeCodeGenCommandlineParams(const TArray<FString>& CommandlineSwitches);
public:
bool bHelpRequested : 1;
TArray<FString> WhiteListedAssetPaths;
TArray<FString> BlackListedAssetPaths;
FString OutputDir;
FString PluginName;
FString ManifestFilePath;
bool bWipeRequested : 1;
bool bPreviewRequested : 1;
};