forked from mirror/DotRecast
9 lines
190 B
C#
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;
|
|||
|
};
|
|||
|
}
|