DotRecastNetSim/src/DotRecast.Core/RcObjImporterContext.cs

10 lines
234 B
C#
Raw Normal View History

2023-05-07 12:10:20 +03:00
using System.Collections.Generic;
namespace DotRecast.Core
2023-05-07 12:10:20 +03:00
{
public class RcObjImporterContext
2023-05-07 12:10:20 +03:00
{
public List<float> vertexPositions = new List<float>();
public List<int> meshFaces = new List<int>();
}
}