DotRecastNetSim/src/DotRecast.Detour.Extras/Jumplink/GroundSegment.cs

12 lines
265 B
C#

using DotRecast.Core;
namespace DotRecast.Detour.Extras.Jumplink
{
public class GroundSegment
{
public RcVec3f p = new RcVec3f();
public RcVec3f q = new RcVec3f();
public GroundSample[] gsamples;
public float height;
}
}