13 lines
152 B
C#
Raw Normal View History

2021-03-22 19:20:51 +08:00
namespace Mapbox.Unity.MeshGeneration.Enums
{
public enum TilePropertyState
{
Unregistered,
None,
Loading,
Loaded,
Error,
Cancelled,
}
}