DotRecastNetSim/src/DotRecast.Detour/SteerTarget.cs

20 lines
565 B
C#
Raw Normal View History

2023-04-14 16:29:19 +03:00
using DotRecast.Core;
namespace DotRecast.Detour
{
public class SteerTarget
{
public readonly Vector3f steerPos;
public readonly int steerPosFlag;
public readonly long steerPosRef;
public readonly float[] steerPoints;
public SteerTarget(Vector3f steerPos, int steerPosFlag, long steerPosRef, float[] steerPoints)
{
this.steerPos = steerPos;
this.steerPosFlag = steerPosFlag;
this.steerPosRef = steerPosRef;
this.steerPoints = steerPoints;
}
}
}