using Godot; namespace Babushka.scripts.CSharp.Common.Inventory; [GlobalClass] public partial class ItemResource : Resource { [Export] public string name; [Export] public Color color; [Export] public Texture2D? icon; [Export] public int maxStack; public ItemResource() { name = ""; color = Colors.Red; maxStack = 1; } }