Dalamud/Dalamud/Plugin/IDalamudPlugin.cs
2021-11-18 15:23:40 +01:00

15 lines
362 B
C#

using System;
namespace Dalamud.Plugin
{
/// <summary>
/// This interface represents a basic Dalamud plugin. All plugins have to implement this interface.
/// </summary>
public interface IDalamudPlugin : IDisposable
{
/// <summary>
/// Gets the name of the plugin.
/// </summary>
string Name { get; }
}
}