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

9 lines
207 B
C#
Raw Normal View History

2023-05-07 11:55:13 +03:00
namespace DotRecast.Detour.TileCache
{
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
};
}