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

13 lines
459 B
C#

// <copyright file="PlugInAttribute.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>
/// An attribute which describes an implementation of a plugin interface.
/// May be helpful for debugging and the user interface.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class PlugInAttribute : Attribute;