DotRecastNetSim/src/DotRecast.Core/RcObjImporterContext.cs

10 lines
234 B
C#

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