mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
* wip * hacky fix for overlapping event text in profiler * move IsResumeGameAfterPluginLoad logic to PluginManager * fix some warnings * handle exceptions properly * remove ability to cancel, rename button to "hide" instead * undo Dalamud.Service refactor for now * warnings * add explainer, show which plugins are still loading * add some text if loading takes more than 3 minutes * undo wrong CS merge
8 lines
206 B
C#
8 lines
206 B
C#
namespace Dalamud.Plugin;
|
|
|
|
/// <summary>
|
|
/// This interface represents a basic Dalamud plugin. All plugins have to implement this interface.
|
|
/// </summary>
|
|
public interface IDalamudPlugin : IDisposable
|
|
{
|
|
}
|