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