RcLayerRegion.cs 491 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. namespace DotRecast.Recast
  3. {
  4. public class RcLayerRegion
  5. {
  6. public int id;
  7. public int layerId;
  8. public bool @base;
  9. public int ymin, ymax;
  10. public List<int> layers;
  11. public List<int> neis;
  12. public RcLayerRegion(int i)
  13. {
  14. id = i;
  15. ymin = 0xFFFF;
  16. layerId = 0xff;
  17. layers = new List<int>();
  18. neis = new List<int>();
  19. }
  20. };
  21. }