mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-04 07:15:53 +00:00
11 lines
225 B
C#
11 lines
225 B
C#
|
|
using Godot;
|
||
|
|
using Godot.Collections;
|
||
|
|
|
||
|
|
namespace Cirno.Scripts.Resources;
|
||
|
|
|
||
|
|
[GlobalClass]
|
||
|
|
[Tool]
|
||
|
|
public partial class VendingShopDefinition : Resource
|
||
|
|
{
|
||
|
|
[Export] public Array<VendingShopEntry> Entries { get; set; } = [];
|
||
|
|
}
|