mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-21 07:59:22 +01:00
A few comments, further cleanup. A few TODOs handled.
This commit is contained in:
parent
dbb9931189
commit
c78725d7d5
47 changed files with 347 additions and 3664 deletions
|
|
@ -1,18 +1,17 @@
|
|||
using System;
|
||||
using System.Numerics;
|
||||
using Dalamud.Interface;
|
||||
using ImGuiNET;
|
||||
using OtterGui;
|
||||
using OtterGui.Raii;
|
||||
using Penumbra.Collections;
|
||||
using Penumbra.Mods;
|
||||
using Penumbra.UI.Classes;
|
||||
using System;
|
||||
using System.Numerics;
|
||||
|
||||
namespace Penumbra.UI;
|
||||
|
||||
public partial class ConfigWindow
|
||||
{
|
||||
public void DrawModsTab()
|
||||
private void DrawModsTab()
|
||||
{
|
||||
if( !Penumbra.ModManager.Valid )
|
||||
{
|
||||
|
|
@ -103,12 +102,10 @@ public partial class ConfigWindow
|
|||
|
||||
private bool _valid;
|
||||
private ModFileSystem.Leaf _leaf = null!;
|
||||
private Mod _mod = null!;
|
||||
private Mod _mod = null!;
|
||||
|
||||
public ModPanel( ConfigWindow window )
|
||||
{
|
||||
_window = window;
|
||||
}
|
||||
=> _window = window;
|
||||
|
||||
public void Draw( ModFileSystemSelector selector )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue