summaryrefslogtreecommitdiff
path: root/scripts/map/TileDefinition.cs
blob: 548fda7b9dcaec0cf97d3b9f487d069a3af094bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Godot;
using System;

[GlobalClass]
public partial class TileDefinition : Resource
{
	[ExportCategory("Visuals")]
	[Export]
	public Texture2D Texture { get; set; }

	[ExportCategory("Mechanics")]
	[Export]
	public bool IsWalkable { get; set; }
}