using System.Collections.Generic; namespace DotRecast.Recast { public class ObjImporterContext { public List<float> vertexPositions = new List<float>(); public List<int> meshFaces = new List<int>(); } }