You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb none #ROBOMERGE-SOURCE: CL 10869241 via CL 10869527 via CL 10869904 #ROBOMERGE-BOT: (v613-10869866) [CL 10870586 by ryan durand in Main branch]
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "UObject/Object.h"
|
|
#include "Engine/EngineTypes.h"
|
|
#include "UObject/SoftObjectPath.h"
|
|
#include "ClassViewerProjectSettings.generated.h"
|
|
|
|
|
|
/**
|
|
* Implements the settings for the Class Viewer Project Settings
|
|
*/
|
|
UCLASS(config=Engine, defaultconfig)
|
|
class CLASSVIEWER_API UClassViewerProjectSettings : public UObject
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
#if WITH_EDITORONLY_DATA
|
|
/** The base directories to be considered Internal Only for the class picker.*/
|
|
UPROPERTY(EditAnywhere, config, Category = ClassVisibilityManagement, meta = (DisplayName = "List of directories to consider Internal Only.", ContentDir, LongPackageName))
|
|
TArray<FDirectoryPath> InternalOnlyPaths;
|
|
|
|
/** The base classes to be considered Internal Only for the class picker.*/
|
|
UPROPERTY(EditAnywhere, config, Category = ClassVisibilityManagement, meta = (MetaClass = "Object", DisplayName = "List of base classes to consider Internal Only.", AllowAbstract = "true", ShowTreeView, HideViewOptions))
|
|
TArray<FSoftClassPath> InternalOnlyClasses;
|
|
#endif
|
|
};
|