baseline: OpenMU upstream b5a0961 (fresh source)
This commit is contained in:
20
src/PlugIns/IStrategyPlugIn.cs
Normal file
20
src/PlugIns/IStrategyPlugIn.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
// <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; }
|
||||
}
|
||||
Reference in New Issue
Block a user