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

12 lines
274 B
C#

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