forked from mirror/DotRecast
9 lines
205 B
C#
9 lines
205 B
C#
|
namespace DotRecast.Detour.TileCache
|
|||
|
{
|
|||
|
public class LayerSweepSpan
|
|||
|
{
|
|||
|
public int ns; // number samples
|
|||
|
public int id; // region id
|
|||
|
public int nei; // neighbour id
|
|||
|
};
|
|||
|
}
|