Files
RuinAdventurer/Scripts/UI/Inventory/ItemDisplay.cs
T

10 lines
201 B
C#

using Godot;
public partial class ItemDisplay : PanelContainer
{
[Export] public TextureRect texture;
[Export] public RichTextLabel text;
[Export] public RichTextLabel amount;
public Item item;
}