mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
10 lines
221 B
C#
10 lines
221 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
|
|
{
|
|
}
|