You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb richard.malo, jeanfrancois.dube [CL 14178187 by Patrick Enfedaque in ue5-main branch]
22 lines
507 B
C++
22 lines
507 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "UObject/Object.h"
|
|
#include "Editor/UnrealEdEngine.h"
|
|
#include "LevelInstanceEditorSettings.generated.h"
|
|
|
|
UCLASS(config = Editor)
|
|
class ULevelInstanceEditorSettings : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
ULevelInstanceEditorSettings();
|
|
|
|
/** List of info for all known LevelInstance template maps */
|
|
UPROPERTY(config)
|
|
TArray<FTemplateMapInfo> TemplateMapInfos;
|
|
}; |