BoundsItem.cs 181 B

1234567891011
  1. using DotRecast.Core;
  2. namespace DotRecast.Recast.Geom
  3. {
  4. public class BoundsItem
  5. {
  6. public RcVec2f bmin;
  7. public RcVec2f bmax;
  8. public int i;
  9. }
  10. }