mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 20:54:16 +01:00
18 lines
548 B
C#
18 lines
548 B
C#
using OtterGui.Classes;
|
|
|
|
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="Api.PenumbraApi.PreSettingsPanelDraw"/>
|
|
Default = 0,
|
|
}
|
|
}
|