11 lines
207 B
C#
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;
|
|
}
|