mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
26 lines
719 B
C#
26 lines
719 B
C#
using System;
|
|
using Penumbra.Util;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary>
|
|
/// Triggered after the settings panel is drawn.
|
|
/// <list type="number">
|
|
/// <item>Parameter is the identifier (directory name) of the currently selected mod. </item>
|
|
/// </list>
|
|
/// </summary>
|
|
public sealed class PostSettingsPanelDraw : EventWrapper<Action<string>, PostSettingsPanelDraw.Priority>
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="Api.PenumbraApi.PostSettingsPanelDraw"/>
|
|
Default = 0,
|
|
}
|
|
|
|
public PostSettingsPanelDraw()
|
|
: base(nameof(PostSettingsPanelDraw))
|
|
{ }
|
|
|
|
public void Invoke(string modDirectory)
|
|
=> Invoke(this, modDirectory);
|
|
}
|