2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-04-23 19:19:51 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2016-11-23 15:48:37 -05:00
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "UObject/ObjectMacros.h"
|
|
|
|
|
#include "UObject/Object.h"
|
2014-04-23 19:19:51 -04:00
|
|
|
#include "SourceCodeAccessSettings.generated.h"
|
|
|
|
|
|
2017-10-24 10:14:07 -04:00
|
|
|
UCLASS(config=EditorSettings)
|
2014-04-23 19:19:51 -04:00
|
|
|
class USourceCodeAccessSettings : public UObject
|
|
|
|
|
{
|
2015-03-17 05:38:32 -04:00
|
|
|
GENERATED_UCLASS_BODY()
|
2014-04-23 19:19:51 -04:00
|
|
|
|
|
|
|
|
/** The source code editor we prefer to use. */
|
2019-02-08 15:46:29 -05:00
|
|
|
UPROPERTY(Config, EditAnywhere, Category="Source Code Editor", meta=(DisplayName="Source Code Editor", ConfigRestartRequired = true))
|
2014-04-23 19:19:51 -04:00
|
|
|
FString PreferredAccessor;
|
2016-11-23 15:48:37 -05:00
|
|
|
};
|