mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Fix CorePlugin on Release
This commit is contained in:
parent
873d0c6305
commit
8b2271d88f
3 changed files with 33 additions and 22 deletions
|
|
@ -27,6 +27,26 @@ namespace Dalamud.CorePlugin
|
|||
/// </remarks>
|
||||
public sealed class PluginImpl : IDalamudPlugin
|
||||
{
|
||||
#if !DEBUG
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PluginImpl"/> class.
|
||||
/// </summary>
|
||||
/// <param name="pluginInterface">Dalamud plugin interface.</param>
|
||||
public PluginImpl(DalamudPluginInterface pluginInterface)
|
||||
{
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public string Name => "Dalamud.CorePlugin";
|
||||
|
||||
/// <inheritdoc/>
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
private readonly WindowSystem windowSystem = new("Dalamud.CorePlugin");
|
||||
private Localization localization;
|
||||
|
||||
|
|
@ -121,5 +141,7 @@ namespace Dalamud.CorePlugin
|
|||
{
|
||||
// this.window.IsOpen = true;
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue