Files
UnrealEngine/Engine/Source/Runtime/ClothingSystemRuntimeNv/Private/ClothConfigNvCustomVersion.h
2025-05-18 13:04:45 +08:00

29 lines
675 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Misc/Guid.h"
// Custom serialization version for config
struct FClothConfigNvCustomVersion
{
enum Type
{
// Before any version changes were made
BeforeCustomVersionWasAdded = 0,
// Deprecate legacy structure and enum that couldn't be redirected
DeprecateLegacyStructureAndEnum = 1,
// -----<new versions can be added above this line>-------------------------------------------------
VersionPlusOne,
LatestVersion = VersionPlusOne - 1
};
// The GUID for this custom version number
const static FGuid GUID;
private:
FClothConfigNvCustomVersion() {}
};