13 lines
323 B
C++
13 lines
323 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "ConcertServerSettings.h"
|
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(ConcertServerSettings)
|
|
|
|
UConcertServerConfig::UConcertServerConfig()
|
|
: bCleanWorkingDir(false)
|
|
, NumSessionsToKeep(-1)
|
|
{
|
|
DefaultVersionInfo.Initialize(false /* bSupportMixedBuildTypes */);
|
|
}
|