10 lines
201 B
C#
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;
|
|
}
|