DotRecastNetSim/src/DotRecast.Detour/BVItem.cs

9 lines
190 B
C#
Raw Normal View History

2023-05-07 06:36:27 +03:00
namespace DotRecast.Detour
{
public class BVItem
{
public readonly int[] bmin = new int[3];
public readonly int[] bmax = new int[3];
public int i;
};
}