19 lines
428 B
C#
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);
|
|
}
|
|
}
|