forked from mirror/DotRecast
10 lines
234 B
C#
10 lines
234 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace DotRecast.Recast
|
|||
|
{
|
|||
|
public class ObjImporterContext
|
|||
|
{
|
|||
|
public List<float> vertexPositions = new List<float>();
|
|||
|
public List<int> meshFaces = new List<int>();
|
|||
|
}
|
|||
|
}
|