DotRecastNetSim/src/DotRecast.Recast/CornerHeight.cs

14 lines
314 B
C#

namespace DotRecast.Recast
{
public class CornerHeight
{
public readonly int height;
public readonly bool borderVertex;
public CornerHeight(int height, bool borderVertex)
{
this.height = height;
this.borderVertex = borderVertex;
}
}
}