DtSegment.cs 241 B

12345678910111213
  1. using DotRecast.Core;
  2. namespace DotRecast.Detour.Crowd
  3. {
  4. public class DtSegment
  5. {
  6. /** Segment start/end */
  7. public RcVec3f[] s = new RcVec3f[2];
  8. /** Distance for pruning. */
  9. public float d;
  10. }
  11. }