DotRecastNetSim/src/DotRecast.Detour.Crowd/IsectRaySegResult.cs

14 lines
307 B
C#

namespace DotRecast.Detour.Crowd
{
public struct IsectRaySegResult
{
public readonly bool result;
public readonly float htmin;
public IsectRaySegResult(bool result, float htmin)
{
this.result = result;
this.htmin = htmin;
}
}
}