You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb JeanMichel.Dignard, Robb.Surridge #preflight 637d180efa348e8480e8837e [CL 23250808 by aditya ravichandran in ue5-main branch]
29 lines
947 B
C++
29 lines
947 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "UObject/Object.h"
|
|
#include "SourceControlSettings.generated.h"
|
|
|
|
/** Serializes source control window settings. */
|
|
UCLASS(config=Editor)
|
|
class USourceControlSettings : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
USourceControlSettings() {}
|
|
|
|
UPROPERTY(config, EditAnywhere, Category="Revision Control Changelist View", meta = (Keywords = "Source Control"))
|
|
bool bShowAssetTypeColumn = true;
|
|
|
|
UPROPERTY(config, EditAnywhere, Category="Revision Control Changelist View", meta = (Keywords = "Source Control"))
|
|
bool bShowAssetLastModifiedTimeColumn = true;
|
|
|
|
UPROPERTY(config, EditAnywhere, Category="Revision Control Changelist View", meta = (Keywords = "Source Control"))
|
|
bool bShowAssetCheckedOutByColumn = true;
|
|
|
|
UPROPERTY(EditAnywhere, config, Category="Revision Control Tools", meta = (Keywords = "Source Control"))
|
|
bool bEnableSubmitContentMenuAction = true;
|
|
};
|