mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-15 05:04:16 +01:00
18 lines
409 B
C#
18 lines
409 B
C#
using Dalamud.Interface.Utility;
|
|
using ImGuiNET;
|
|
using OtterGui.Widgets;
|
|
|
|
namespace Glamourer.Gui.Tabs.NpcTab;
|
|
|
|
public class NpcTab(NpcSelector _selector, NpcPanel _panel) : ITab
|
|
{
|
|
public ReadOnlySpan<byte> Label
|
|
=> "NPCs"u8;
|
|
|
|
public void DrawContent()
|
|
{
|
|
_selector.Draw(200 * ImGuiHelpers.GlobalScale);
|
|
ImGui.SameLine();
|
|
_panel.Draw();
|
|
}
|
|
}
|