mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
15 lines
362 B
C#
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; }
|
|
}
|
|
}
|