From c6bbb834f7758027c0df338f1520f34fad3befea Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 9 Sep 2025 19:09:34 -0300 Subject: Organização MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/map/TileDefinition.cs | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 scripts/map/TileDefinition.cs (limited to 'scripts/map/TileDefinition.cs') diff --git a/scripts/map/TileDefinition.cs b/scripts/map/TileDefinition.cs deleted file mode 100644 index 84e5cc1..0000000 --- a/scripts/map/TileDefinition.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Godot; - -/// -/// Define as características de um tile. -/// -[GlobalClass] -public partial class TileDefinition : Resource -{ - [ExportCategory("Visuals")] - [Export] - public Texture2D Texture { get; set; } - [Export(PropertyHint.ColorNoAlpha)] - public Color LitColor { get; set; } = Colors.White; - [Export(PropertyHint.ColorNoAlpha)] - public Color DarkColor { get; set; } = Colors.White; - - [ExportCategory("Mechanics")] - [Export] - public bool IsWalkable { get; set; } - [Export] - public bool IsTransparent { get; set; } -} -- cgit v1.2.3