8 lines
127 B
C#
8 lines
127 B
C#
using Godot;
|
|
|
|
public struct Tile
|
|
{
|
|
public bool isHighlighted;
|
|
public float value;
|
|
public ShaderMaterial material;
|
|
} |