DtTileCacheLayerBuildResult.cs 461 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. namespace DotRecast.Detour.TileCache
  4. {
  5. public class DtTileCacheLayerBuildResult
  6. {
  7. public readonly int tx;
  8. public readonly int ty;
  9. public readonly List<byte[]> layers;
  10. public DtTileCacheLayerBuildResult(int tx, int ty, List<byte[]> layers)
  11. {
  12. this.tx = tx;
  13. this.ty = ty;
  14. this.layers = layers;
  15. }
  16. }
  17. }