diff options
| author | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-09-09 19:09:34 -0300 |
|---|---|---|
| committer | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-09-09 19:09:34 -0300 |
| commit | c6bbb834f7758027c0df338f1520f34fad3befea (patch) | |
| tree | 1818cd23c24be16fbe19b16dd0a510874d440d83 /scripts/map/TileDefinition.cs | |
| parent | f1b51bed52ffbd90b5b7cc8dcfc6f0484bbbeb3c (diff) | |
Organização
Diffstat (limited to 'scripts/map/TileDefinition.cs')
| -rw-r--r-- | scripts/map/TileDefinition.cs | 22 |
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; } -} |
