Files
UnrealEngineUWP/Engine/Plugins/Runtime/nDisplay/Source/DisplayClusterConfiguration/Public/DisplayClusterConfigurationVersion.h
George Rolfe 07756a39e4 nDisplay static string explicit type
#jira none
#preflight 61dc96a8cc3f3367af761aac

#rb simon.therriault
#rb jeremie.roy
#rb andrey.yamashev

[CL 18565336 by George Rolfe in ue5-main branch]
2022-01-10 16:25:58 -05:00

20 lines
462 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
enum class EDisplayClusterConfigurationVersion : uint8
{
Unknown, // Unknown version or not a config file
Version_426, // 4.26 JSON based config format
Version_427, // 4.27 JSON based config format
Version_500, // 5.00 JSON based config format
};
namespace DisplayClusterConfiguration
{
static constexpr const TCHAR* GetCurrentConfigurationSchemeMarker()
{
return TEXT("5.00");
}
}