mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 08:55:35 +00:00
11 lines
No EOL
225 B
C#
11 lines
No EOL
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; } = [];
|
|
} |