mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-30 04:13:43 +01:00
21 lines
597 B
C#
21 lines
597 B
C#
using OtterGui.Classes;
|
|
using Penumbra.Api.Enums;
|
|
using Penumbra.Mods;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary>
|
|
/// Trigger to select a tab and mod in the Config Window.
|
|
/// <list type="number">
|
|
/// <item>Parameter is the selected tab. </item>
|
|
/// <item>Parameter is the selected mod, if any. </item>
|
|
/// </list>
|
|
/// </summary>
|
|
public sealed class SelectTab() : EventWrapper<TabType, Mod?, SelectTab.Priority>(nameof(SelectTab))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="UI.Tabs.ConfigTabBar.OnSelectTab"/>
|
|
ConfigTabBar = 0,
|
|
}
|
|
}
|