2023-05-07 11:55:13 +03:00
|
|
|
|
namespace DotRecast.Detour.TileCache
|
|
|
|
|
{
|
2023-06-08 16:24:34 +03:00
|
|
|
|
public class DtLayerSweepSpan
|
2023-05-07 11:55:13 +03:00
|
|
|
|
{
|
|
|
|
|
public int ns; // number samples
|
|
|
|
|
public int id; // region id
|
|
|
|
|
public int nei; // neighbour id
|
|
|
|
|
};
|
|
|
|
|
}
|