You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none #preflight 61dc96a8cc3f3367af761aac #rb simon.therriault #rb jeremie.roy #rb andrey.yamashev [CL 18565336 by George Rolfe in ue5-main branch]
20 lines
462 B
C++
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");
|
|
}
|
|
}
|