Files
AetherBags/KamiToolKit/Nodes/Basic/BorderNineGridNode.cs
T
KnackAtNite 8db4ce6094
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled
Initial commit: AetherBags + KamiToolKit for FC Gitea
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 14:46:31 -05:00

25 lines
645 B
C#

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;
}
}