DtLayerMonotoneRegion.cs 324 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace DotRecast.Detour.TileCache
  3. {
  4. public class DtLayerMonotoneRegion
  5. {
  6. public const int DT_LAYER_MAX_NEIS = 16;
  7. public int area;
  8. public List<int> neis = new List<int>(DT_LAYER_MAX_NEIS);
  9. public int regId;
  10. public int areaId;
  11. };
  12. }