using System.Collections.Generic; namespace DotRecast.Detour.TileCache { public class DtTempContour { public List verts; public int nverts; public List poly; public DtTempContour() { verts = new List(); nverts = 0; poly = new List(); } public int Npoly() { return poly.Count; } public void Clear() { nverts = 0; verts.Clear(); } }; }