15 lines
220 B
C#
15 lines
220 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace BitGames.Terrain
|
|||
|
{
|
|||
|
public readonly struct SizeOption
|
|||
|
{
|
|||
|
public readonly int TextureSize;
|
|||
|
|
|||
|
public SizeOption(int textureSize)
|
|||
|
{
|
|||
|
TextureSize = textureSize;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|