UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
LoadTimesObjectVersion.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "HAL/Platform.h"
5
6struct FGuid;
7
8// Custom serialization version for changes made in LoadTimes stream
10{
11 enum Type
12 {
13 // Before any version changes were made
15
16 // Allows uncompressed reflection captures for cooked builds
18
19 // -----<new versions can be added above this line>-------------------------------------------------
22 };
23
24 // The GUID for this custom version number
25 CORE_API const static FGuid GUID;
26
27private:
29};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition Guid.h:109
Definition LoadTimesObjectVersion.h:10
Type
Definition LoadTimesObjectVersion.h:12
@ VersionPlusOne
Definition LoadTimesObjectVersion.h:20
@ BeforeCustomVersionWasAdded
Definition LoadTimesObjectVersion.h:14
@ LatestVersion
Definition LoadTimesObjectVersion.h:21
@ UncompressedReflectionCapturesForCookedBuilds
Definition LoadTimesObjectVersion.h:17
CORE_API static const FGuid GUID
Definition LoadTimesObjectVersion.h:25