Code commit

This commit is contained in:
RisaDev
2024-01-06 01:21:41 +03:00
parent a7d7297c59
commit a486dd2c96
90 changed files with 11576 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using Dalamud.Interface.Utility;
using ImGuiNET;
namespace CustomizePlus.UI.Windows.MainWindow.Tabs.Profiles;
public class ProfilesTab
{
private readonly ProfileFileSystemSelector _selector;
private readonly ProfilePanel _panel;
public ProfilesTab(ProfileFileSystemSelector selector, ProfilePanel panel)
{
_selector = selector;
_panel = panel;
}
public void Draw()
{
_selector.Draw(200f * ImGuiHelpers.GlobalScale);
ImGui.SameLine();
_panel.Draw();
}
}