forked from mirror/DotRecast
9 lines
189 B
C#
9 lines
189 B
C#
|
namespace DotRecast.Core
|
|||
|
{
|
|||
|
public class Edge
|
|||
|
{
|
|||
|
public int[] vert = new int[2];
|
|||
|
public int[] polyEdge = new int[2];
|
|||
|
public int[] poly = new int[2];
|
|||
|
}
|
|||
|
}
|