11 lines
292 B
C#
11 lines
292 B
C#
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;
|
|
} |