DotRecastNetSim/src/DotRecast.Recast/RcContourHole.cs

10 lines
189 B
C#
Raw Normal View History

2023-05-07 11:55:13 +03:00
namespace DotRecast.Recast
{
public class RcContourHole
2023-05-07 11:55:13 +03:00
{
public int leftmost;
public int minx;
public int minz;
public RcContour contour;
2023-05-07 11:55:13 +03:00
}
}