// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Gauntlet;
namespace UnrealGame
{
///
/// Default set of options for testing "DefaultGame". Options that tests can configure
/// should be public, external command-line driven options should be protected/private
///
public class UnrealTestConfig : UnrealTestConfiguration
{
///
/// Applies these options to the provided app config
///
///
///
///
public override void ApplyToConfig(UnrealAppConfig AppConfig, UnrealSessionRole ConfigRole, IEnumerable OtherRoles)
{
base.ApplyToConfig(AppConfig, ConfigRole, OtherRoles);
}
}
}