DotRecastNetSim/src/DotRecast.Detour/DtPolyPoint.cs

16 lines
320 B
C#

using DotRecast.Core.Numerics;
namespace DotRecast.Detour
{
public readonly struct DtPolyPoint
{
public readonly long refs;
public readonly RcVec3f pt;
public DtPolyPoint(long polyRefs, RcVec3f polyPt)
{
refs = polyRefs;
pt = polyPt;
}
}
}