DotRecastNetSim/src/DotRecast.Recast/CornerHeight.cs

14 lines
314 B
C#
Raw Normal View History

2023-05-07 11:55:13 +03:00
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;
}
}
}