DtLayerSweepSpan.cs 207 B

123456789
  1. namespace DotRecast.Detour.TileCache
  2. {
  3. public class DtLayerSweepSpan
  4. {
  5. public int ns; // number samples
  6. public int id; // region id
  7. public int nei; // neighbour id
  8. };
  9. }