Code/Tilemap/TileMapAxis.cs

Enum type that defines the three axes orientations for a tile map: XZ, YZ, and XY. Likely used to indicate which plane the tilemap lies on.

namespace Saandy.Tilemapper;

public enum TileMapAxis
{
	XZ,
	YZ,
	XY
}