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