//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.PlugIns;
///
/// Interface for a strategy plugin which provides a key under which the strategy is getting registered.
///
/// The type of the key.
public interface IStrategyPlugIn
{
///
/// Gets the key under which the strategy is getting registered.
///
///
/// The key.
///
TKey Key { get; }
}