Why is this so much work?

This commit is contained in:
Ottermandias 2023-03-20 17:30:09 +01:00
parent 651c7410ac
commit b92a3161b5
53 changed files with 3054 additions and 2936 deletions

View file

@ -1,16 +1,16 @@
using System;
using Dalamud.Plugin;
using Penumbra.Mods;
using Penumbra.UI.Classes;
using Penumbra.UI.AdvancedWindow;
namespace Penumbra.UI.ModTab;
namespace Penumbra.UI.ModsTab;
public class ModPanel : IDisposable
{
private readonly ModFileSystemSelector _selector;
private readonly ModEditWindow _editWindow;
private readonly ModPanelHeader _header;
private readonly ModPanelTabBar _tabs;
private readonly ModFileSystemSelector _selector;
private readonly ModEditWindow _editWindow;
private readonly ModPanelHeader _header;
private readonly ModPanelTabBar _tabs;
public ModPanel(DalamudPluginInterface pi, ModFileSystemSelector selector, ModEditWindow editWindow, ModPanelTabBar tabs)
{