using System.Collections.Generic; namespace DotRecast.Detour.TileCache { public class DtLayerMonotoneRegion { public const int DT_LAYER_MAX_NEIS = 16; public int area; public List neis = new List(DT_LAYER_MAX_NEIS); public int regId; public int areaId; }; }