mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-02 13:53:42 +01:00
18 lines
551 B
C#
18 lines
551 B
C#
using OtterGui.Classes;
|
|
|
|
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<string, PostSettingsPanelDraw.Priority>(nameof(PostSettingsPanelDraw))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="Api.PenumbraApi.PostSettingsPanelDraw"/>
|
|
Default = 0,
|
|
}
|
|
}
|