mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-23 00:49:18 +01:00
ResourceTree: Add filtering to the UI
This commit is contained in:
parent
43c6b52d0b
commit
5e76ab3b84
4 changed files with 145 additions and 22 deletions
|
|
@ -9,6 +9,7 @@ public class ResourceNode : ICloneable
|
|||
public string? Name;
|
||||
public string? FallbackName;
|
||||
public ChangedItemIcon Icon;
|
||||
public ChangedItemIcon DescendentIcons;
|
||||
public readonly ResourceType Type;
|
||||
public readonly nint ObjectAddress;
|
||||
public readonly nint ResourceHandle;
|
||||
|
|
@ -49,6 +50,7 @@ public class ResourceNode : ICloneable
|
|||
Name = other.Name;
|
||||
FallbackName = other.FallbackName;
|
||||
Icon = other.Icon;
|
||||
DescendentIcons = other.DescendentIcons;
|
||||
Type = other.Type;
|
||||
ObjectAddress = other.ObjectAddress;
|
||||
ResourceHandle = other.ResourceHandle;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue