mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Make DalamudPluginInterface into IDalamudPluginInterface (#1807)
* Make DalamudPluginInterface into IDalamudPluginInterface * Interface UiBuilder
This commit is contained in:
parent
d7d029e3cd
commit
2e3153c502
9 changed files with 583 additions and 82 deletions
|
|
@ -55,7 +55,7 @@ namespace Dalamud.CorePlugin
|
|||
/// </summary>
|
||||
/// <param name="pluginInterface">Dalamud plugin interface.</param>
|
||||
/// <param name="log">Logging service.</param>
|
||||
public PluginImpl(DalamudPluginInterface pluginInterface, IPluginLog log)
|
||||
public PluginImpl(IDalamudPluginInterface pluginInterface, IPluginLog log)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
|
@ -86,7 +86,7 @@ namespace Dalamud.CorePlugin
|
|||
/// <summary>
|
||||
/// Gets the plugin interface.
|
||||
/// </summary>
|
||||
internal DalamudPluginInterface Interface { get; private set; }
|
||||
internal IDalamudPluginInterface Interface { get; private set; }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public void Dispose()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue