Files
AdamuSw/tests/MUnique.OpenMU.PlugIns.Tests/ITestCustomPlugIn.cs
2026-07-14 19:00:35 +03:00

19 lines
661 B
C#

// <copyright file="ITestCustomPlugIn.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.PlugIns.Tests;
/// <summary>
/// A plugin interface for specific implementations for plugins managed by the <see cref="CustomTestPlugInContainer"/>.
/// </summary>
public interface ITestCustomPlugIn : ICustomTestPlugInContainer
{
}
/// <summary>
/// A plugin interface for specific implementations for plugins managed by the <see cref="CustomTestPlugInContainer"/>.
/// </summary>
public interface IAnotherCustomPlugIn : ICustomTestPlugInContainer
{
}