2024-12-01 17:07:41 +00:00
|
|
|
using Godot;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
[Tool]
|
|
|
|
[GlobalClass]
|
|
|
|
public partial class WorldMapDefinition:Resource
|
|
|
|
{
|
|
|
|
[Export]
|
2025-08-31 06:05:39 +00:00
|
|
|
public string worldMapPath = "WorldMap";
|
2024-12-01 17:07:41 +00:00
|
|
|
|
|
|
|
[Export]
|
2025-08-31 06:05:39 +00:00
|
|
|
public WorldMapLayerType[] layers = [];
|
2024-12-01 17:07:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|