Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
MediaFrameWorkObjectVersion.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-Editor stream
9{
10 enum Type
11 {
12 // Before any version changes were made
13 BeforeCustomVersionWasAdded = 0,
14 // Serialize GUIDs instead of plain names for MediaSource platform/player map
15 SerializeGUIDsInMediaSourceInsteadOfPlainNames,
16 // Serialize GUIDs instead of plain names for PlatformMediaSource platform/mediasource map
17 SerializeGUIDsInPlatformMediaSourceInsteadOfPlainNames,
18 // -----<new versions can be added above this line>-------------------------------------------------
19 VersionPlusOne,
20 LatestVersion = VersionPlusOne - 1
21 };
22
23 // The GUID for this custom version number
24 const static FGuid GUID;
25
26private:
28};
Definition Guid.h:108