Skip to content

Commit

Permalink
update comment in DtCrowdNeighbour
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Jul 7, 2024
1 parent 1894a56 commit 76e5ade
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/DotRecast.Detour.Crowd/DtCrowdNeighbour.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@
/// @see dtCrowdAgent::neis, dtCrowd
public readonly struct DtCrowdNeighbour
{
public readonly DtCrowdAgent agent;

/// < The index of the neighbor in the crowd.
public readonly float dist;

/// < The distance between the current agent and the neighbor.
public readonly DtCrowdAgent agent; // < The index of the neighbor in the crowd.
public readonly float dist; // < The distance between the current agent and the neighbor.

public DtCrowdNeighbour(DtCrowdAgent agent, float dist)
{
this.agent = agent;
Expand Down

0 comments on commit 76e5ade

Please sign in to comment.