mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 14:27:45 +01:00
feat: Encourage developers to use DLLs for devPlugins (#1958)
* Add file dialog to add a dev plugin * Require dev plugins to be paths to the DLL * Only allow .dlls in the dev plugin setting entry * Update dev plugin location hint * update wording --------- Co-authored-by: KazWolfe <KazWolfe@users.noreply.github.com>
This commit is contained in:
parent
67e6bcac61
commit
57cc2f36f9
5 changed files with 87 additions and 36 deletions
|
|
@ -44,6 +44,14 @@ public abstract class SettingsTab : IDisposable
|
|||
ImGuiHelpers.ScaledDummy(15);
|
||||
}
|
||||
|
||||
public virtual void PostDraw()
|
||||
{
|
||||
foreach (var settingsEntry in this.Entries)
|
||||
{
|
||||
settingsEntry.PostDraw();
|
||||
}
|
||||
}
|
||||
|
||||
public virtual void Load()
|
||||
{
|
||||
foreach (var settingsEntry in this.Entries)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue