DotRecastNetSim/src/DotRecast.Detour.TileCache/DtTileCacheLayerBuildResult.cs

19 lines
461 B
C#
Raw Normal View History

2023-07-01 06:24:23 +03:00
using System.Collections.Generic;
using System.Threading.Tasks;
namespace DotRecast.Detour.TileCache
{
2023-08-19 07:03:00 +03:00
public class DtTileCacheLayerBuildResult
2023-07-01 06:24:23 +03:00
{
public readonly int tx;
public readonly int ty;
2023-08-19 07:03:00 +03:00
public readonly List<byte[]> layers;
2023-07-01 06:24:23 +03:00
2023-08-19 07:03:00 +03:00
public DtTileCacheLayerBuildResult(int tx, int ty, List<byte[]> layers)
2023-07-01 06:24:23 +03:00
{
this.tx = tx;
this.ty = ty;
2023-08-19 07:03:00 +03:00
this.layers = layers;
2023-07-01 06:24:23 +03:00
}
}
}