using System.Collections.Generic; using System.Threading.Tasks; namespace DotRecast.Detour.TileCache { public class DtTileCacheBuildResult { public readonly int tx; public readonly int ty; public readonly Task> task; public DtTileCacheBuildResult(int tx, int ty, Task> task) { this.tx = tx; this.ty = ty; this.task = task; } } }