// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "CoreMinimal.h" #include "Misc/Guid.h" // Custom serialization version for all packages containing LiveLink dependent asset types struct LIVELINKINTERFACE_API FLiveLinkCustomVersion { enum Type { // Before any version changes were made in the plugin BeforeCustomVersionWasAdded = 0, NewLiveLinkRoleSystem, // ------------------------------------------------------ VersionPlusOne, LatestVersion = VersionPlusOne - 1 }; // The GUID for this custom version number static const FGuid GUID; private: FLiveLinkCustomVersion() {} };