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