10 lines
206 B
C#
10 lines
206 B
C#
using Godot;
|
|
using System.Collections.Generic;
|
|
|
|
public struct TileRenderData
|
|
{
|
|
public Tile Tile;
|
|
public string MeshKey;
|
|
public Transform3D Transform;
|
|
public List<Placeholder> Placeholders;
|
|
} |