DotRecastNetSim/src/DotRecast.Core/RcEdge.cs

9 lines
191 B
C#
Raw Normal View History

2023-05-07 06:36:27 +03:00
namespace DotRecast.Core
{
public class RcEdge
2023-05-07 06:36:27 +03:00
{
public int[] vert = new int[2];
public int[] polyEdge = new int[2];
public int[] poly = new int[2];
}
}