Files
2025-05-18 13:04:45 +08: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);
}
}