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

11 lines
190 B
C#

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