DotRecastNetSim/src/DotRecast.Detour.Crowd/Segment.cs

13 lines
239 B
C#

using DotRecast.Core;
namespace DotRecast.Detour.Crowd
{
public class Segment
{
/** Segment start/end */
public RcVec3f[] s = new RcVec3f[2];
/** Distance for pruning. */
public float d;
}
}