TiledTerrain/Assets/Tile Terrain/Runtime/SizeOption.cs

15 lines
220 B
C#

using UnityEngine;
namespace BitGames.Terrain
{
public readonly struct SizeOption
{
public readonly int TextureSize;
public SizeOption(int textureSize)
{
TextureSize = textureSize;
}
}
}