DotRecastNetSim/src/DotRecast.Detour/BVItem.cs

9 lines
190 B
C#

namespace DotRecast.Detour
{
public class BVItem
{
public readonly int[] bmin = new int[3];
public readonly int[] bmax = new int[3];
public int i;
};
}