Files
AdamuSw/src/PlugIns/IStrategyPlugIn.cs
2026-07-14 19:00:35 +03:00

20 lines
634 B
C#

// <copyright file="IStrategyPlugIn.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.PlugIns;
/// <summary>
/// Interface for a strategy plugin which provides a key under which the strategy is getting registered.
/// </summary>
/// <typeparam name="TKey">The type of the key.</typeparam>
public interface IStrategyPlugIn<out TKey>
{
/// <summary>
/// Gets the key under which the strategy is getting registered.
/// </summary>
/// <value>
/// The key.
/// </value>
TKey Key { get; }
}