forked from bit/DotRecastNetSim
15 lines
324 B
C#
15 lines
324 B
C#
|
using DotRecast.Core;
|
|||
|
|
|||
|
namespace DotRecast.Detour.Crowd
|
|||
|
{
|
|||
|
public class ObstacleSegment
|
|||
|
{
|
|||
|
/** End points of the obstacle segment */
|
|||
|
public Vector3f p = new Vector3f();
|
|||
|
|
|||
|
/** End points of the obstacle segment */
|
|||
|
public Vector3f q = new Vector3f();
|
|||
|
|
|||
|
public bool touch;
|
|||
|
}
|
|||
|
}
|