DotRecastNetSim/src/DotRecast.Core/DistSeg.cs

8 lines
125 B
C#
Raw Normal View History

2023-05-29 06:06:03 +03:00
namespace DotRecast.Core
{
public struct DistSeg
{
public float DistSqr;
public float Seg;
}
}