mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
10 lines
No EOL
198 B
C#
10 lines
No EOL
198 B
C#
using Godot;
|
|
using Godot.Collections;
|
|
|
|
namespace Cirno.Scripts.Resources;
|
|
|
|
[GlobalClass]
|
|
public partial class MapsDatabase : Resource
|
|
{
|
|
[Export] public Array<MapResource> Maps { get; set; }
|
|
} |