DtObstacleSegment.cs 322 B

123456789101112131415
  1. using DotRecast.Core;
  2. namespace DotRecast.Detour.Crowd
  3. {
  4. public class DtObstacleSegment
  5. {
  6. /** End points of the obstacle segment */
  7. public RcVec3f p = new RcVec3f();
  8. /** End points of the obstacle segment */
  9. public RcVec3f q = new RcVec3f();
  10. public bool touch;
  11. }
  12. }