summaryrefslogtreecommitdiff
path: root/scripts/map/TileDefinition.cs
blob: fbd14a1e1ec00cfa728e6e7af02a767418c2d045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
	[Export]
	public bool IsTransparent { get; set; }
}