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

15 lines
324 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 Vector3f p = new Vector3f();
/** End points of the obstacle segment */
public Vector3f q = new Vector3f();
public bool touch;
}
}