UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
LandscapeEditLayerTargetLayerGroup.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6
7
8// ----------------------------------------------------------------------------------
9
11{
12
13#if WITH_EDITOR
14
19{
20public:
22 : Name(InName)
24 {}
25
26 inline FName GetName() const
27 {
28 return Name;
29 }
30
32 {
34 }
35
36private:
40 FName Name;
41
47};
48
49#endif // WITH_EDITOR
50
51} //namespace UE::Landscape::EditLayers
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition NameTypes.h:617
IMAGECORE_API const TCHAR * GetName(Type Format)
Definition ImageCore.cpp:1378
Definition Landscape.h:55