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

20 lines
559 B
C#
Raw Normal View History

2023-05-07 12:10:20 +03:00
namespace DotRecast.Detour.Crowd
{
/// Provides neighbor data for agents managed by the crowd.
/// @ingroup crowd
/// @see dtCrowdAgent::neis, dtCrowd
public class CrowdNeighbour
{
public readonly CrowdAgent agent;
/// < The index of the neighbor in the crowd.
public readonly float dist;
/// < The distance between the current agent and the neighbor.
public CrowdNeighbour(CrowdAgent agent, float dist)
{
this.agent = agent;
this.dist = dist;
}
};
}