13 lines
226 B
C#
13 lines
226 B
C#
using UnityEngine;
|
|
|
|
namespace Pathfinding.RVO {
|
|
/// <summary>
|
|
/// ORCA Line.
|
|
/// Simply holds a point and a direction, nothing fancy.
|
|
/// </summary>
|
|
public struct Line {
|
|
public Vector2 point;
|
|
public Vector2 dir;
|
|
}
|
|
}
|