Files
UnrealEngine/Engine/Source/Programs/AutomationTool/Gauntlet/Framework/Base/Gauntlet.ConfigOption.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
428 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Text;
namespace Gauntlet
{
/// <summary>
/// An interface to a set of options that implement the IAppConfig interface
/// </summary>
/// <typeparam name="ConfigType"></typeparam>
public interface IConfigOption<ConfigType>
where ConfigType : IAppConfig
{
void ApplyToConfig(ConfigType AppConfig);
}
}