using Godot; /// /// Define as características de um tile. /// [GlobalClass] public partial class TileDefinition : Resource { [ExportCategory("Visuals")] [Export] public Texture2D Texture { get; set; } [ExportCategory("Mechanics")] [Export] public bool IsWalkable { get; set; } [Export] public bool IsTransparent { get; set; } }