19 lines
661 B
C#
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
|
|
{
|
|
} |