ObjImporterContext.cs 234 B

12345678910
  1. using System.Collections.Generic;
  2. namespace DotRecast.Recast
  3. {
  4. public class ObjImporterContext
  5. {
  6. public List<float> vertexPositions = new List<float>();
  7. public List<int> meshFaces = new List<int>();
  8. }
  9. }