summaryrefslogtreecommitdiff
path: root/scripts/map/TileDefinition.cs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/map/TileDefinition.cs')
-rw-r--r--scripts/map/TileDefinition.cs22
1 files changed, 0 insertions, 22 deletions
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;
-
-/// <summary>
-/// Define as características de um tile.
-/// </summary>
-[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; }
-}