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

15 lines
320 B
C#
Raw Normal View History

2023-05-07 12:10:20 +03:00
using DotRecast.Core;
namespace DotRecast.Detour.Crowd
{
public class ObstacleSegment
{
/** End points of the obstacle segment */
public RcVec3f p = new RcVec3f();
2023-05-07 12:10:20 +03:00
/** End points of the obstacle segment */
public RcVec3f q = new RcVec3f();
2023-05-07 12:10:20 +03:00
public bool touch;
}
}