Initial commit: AetherBags + KamiToolKit for FC Gitea
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-08 14:46:31 -05:00
commit 8db4ce6094
375 changed files with 34124 additions and 0 deletions
@@ -0,0 +1,24 @@
using System.Numerics;
using KamiToolKit.Classes;
namespace KamiToolKit.Nodes;
/// <summary>
/// A node that shows a border loaded from the party list textures
/// </summary>
public unsafe class BorderNineGridNode : NineGridNode {
public BorderNineGridNode() {
PartsList.Add(new Part {
TextureCoordinates = new Vector2(0.0f, 0.0f),
Size = new Vector2(64.0f, 64.0f),
Id = 0,
TexturePath = "ui/uld/PartyListTargetBase.tex",
});
TopOffset = 20;
LeftOffset = 20;
RightOffset = 20;
BottomOffset = 20;
PartsRenderType = 108;
}
}