mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-18 21:47:44 +01:00
18 lines
415 B
C#
18 lines
415 B
C#
using Dalamud.Interface.Utility;
|
|
using ImGuiNET;
|
|
using OtterGui.Widgets;
|
|
|
|
namespace Glamourer.Gui.Tabs.ActorTab;
|
|
|
|
public class ActorTab(ActorSelector selector, ActorPanel panel) : ITab
|
|
{
|
|
public ReadOnlySpan<byte> Label
|
|
=> "Actors"u8;
|
|
|
|
public void DrawContent()
|
|
{
|
|
selector.Draw(200 * ImGuiHelpers.GlobalScale);
|
|
ImGui.SameLine();
|
|
panel.Draw();
|
|
}
|
|
}
|