DotRecastNetSim/src/DotRecast.Recast/Geom/BoundsItem.cs

12 lines
213 B
C#

using DotRecast.Core.Numerics;
using System.Numerics;
namespace DotRecast.Recast.Geom
{
public class BoundsItem
{
public Vector2 bmin;
public Vector2 bmax;
public int i;
}
}