DotRecastNetSim/src/DotRecast.Detour.Extras/Jumplink/JumpEdge.cs

11 lines
225 B
C#

using DotRecast.Core.Numerics;
using System.Numerics;
namespace DotRecast.Detour.Extras.Jumplink
{
public class JumpEdge
{
public Vector3 sp = new Vector3();
public Vector3 sq = new Vector3();
}
}