DotRecastNetSim/src/DotRecast.Detour.TileCache/LayerSweepSpan.cs

9 lines
205 B
C#
Raw Normal View History

2023-05-07 11:55:13 +03:00
namespace DotRecast.Detour.TileCache
{
public class LayerSweepSpan
{
public int ns; // number samples
public int id; // region id
public int nei; // neighbour id
};
}