GroundSegment.cs 265 B

123456789101112
  1. using DotRecast.Core;
  2. namespace DotRecast.Detour.Extras.Jumplink
  3. {
  4. public class GroundSegment
  5. {
  6. public RcVec3f p = new RcVec3f();
  7. public RcVec3f q = new RcVec3f();
  8. public GroundSample[] gsamples;
  9. public float height;
  10. }
  11. }