UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
GCVerseCellInfo.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "UObject/NameTypes.h"
6#include "Containers/Map.h"
7
8#if WITH_VERSE_VM || defined(__INTELLISENSE__)
9#include "VerseVM/VVMCell.h"
10
11namespace Verse
12{
13 struct VCell;
14}
15
22{
23public:
24
25 FGCVerseCellInfo() = default;
26 explicit FGCVerseCellInfo(const Verse::VCell* Cell)
27 : DebugName(Cell->DebugName())
28 {
29 }
30
31private:
32
34 FName DebugName;
35
36public:
37
38 FName GetDebugName() const
39 {
40 return DebugName;
41 }
42
45};
46#endif
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition NameTypes.h:617
Definition UnrealString.h.inl:34
Definition Archive.h:36