using System.Collections.Generic; using System.Threading.Tasks; namespace DotRecast.Detour.TileCache { public class DtTileCacheLayerBuildResult { public readonly int tx; public readonly int ty; public readonly List layers; public DtTileCacheLayerBuildResult(int tx, int ty, List layers) { this.tx = tx; this.ty = ty; this.layers = layers; } } }