using Godot; namespace CryptonymThunder.Code.Resources; [GlobalClass] public partial class PickupComponentResource : Resource { [Export] public string ItemId { get; set; } [Export] public int Quantity { get; set; } = 1; [Export] public bool IsInstantUse { get; set; } = false; }