RcHeightPatch.cs 206 B

1234567891011
  1. namespace DotRecast.Recast
  2. {
  3. public class RcHeightPatch
  4. {
  5. public int xmin;
  6. public int ymin;
  7. public int width;
  8. public int height;
  9. public int[] data;
  10. }
  11. }