18 lines
336 B
C#
18 lines
336 B
C#
using Godot;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Rokojori
|
|
{
|
|
[Tool]
|
|
[GlobalClass]
|
|
public partial class WorldMapLayerSetting:Resource
|
|
{
|
|
[Export]
|
|
public WorldMapLayerDefinition layerDefinition;
|
|
|
|
[Export]
|
|
public bool active = true;
|
|
}
|
|
} |