mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-20 06:47:46 +01:00
19 lines
569 B
C#
19 lines
569 B
C#
using OtterGui.Classes;
|
|
using Penumbra.Api.Api;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary>
|
|
/// Triggered before 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 PreSettingsPanelDraw() : EventWrapper<string, PreSettingsPanelDraw.Priority>(nameof(PreSettingsPanelDraw))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="PenumbraApi.PreSettingsPanelDraw"/>
|
|
Default = 0,
|
|
}
|
|
}
|