Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
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
14 BeforeCustomVersionWasAdded = 0,
15
16 // Allows uncompressed reflection captures for cooked builds
17 UncompressedReflectionCapturesForCookedBuilds,
18
19 // -----<new versions can be added above this line>-------------------------------------------------
20 VersionPlusOne,
21 LatestVersion = VersionPlusOne - 1
22 };
23
24 // The GUID for this custom version number
25 const static FGuid GUID;
26
27private:
29};
Definition Guid.h:108