mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 08:55:35 +00:00
12 lines
288 B
C#
12 lines
288 B
C#
|
|
using Godot;
|
||
|
|
|
||
|
|
namespace Cirno.Scripts.Resources;
|
||
|
|
|
||
|
|
[GlobalClass]
|
||
|
|
[Tool]
|
||
|
|
public partial class VendingShopEntry : Resource
|
||
|
|
{
|
||
|
|
[Export] public LootItem Item { get; set; }
|
||
|
|
[Export] public bool Unlimited { get; set; } = true;
|
||
|
|
[Export] public int StartingQuantity { get; set; } = 1;
|
||
|
|
}
|