8 lines
123 B
C#

using Godot;
public struct Tile
{
public bool isHighlighted;
public float temperature;
public TileType type;
}