newlon/scripts/resources/entities/GridEntityResource.cs
2025-07-25 18:48:49 +05:00

11 lines
207 B
C#

using Godot;
namespace Newlon.Resources;
[GlobalClass]
[Tool]
public partial class GridEntityResource : EntityResource
{
[Export] public int Layer = 1;
[Export] public bool DontRegister = false;
}