forked from mirror/DotRecast
29 lines
540 B
C#
29 lines
540 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DotRecast.Detour.TileCache
|
|
{
|
|
public class DtTempContour
|
|
{
|
|
public List<int> verts;
|
|
public int nverts;
|
|
public List<int> poly;
|
|
|
|
public DtTempContour()
|
|
{
|
|
verts = new List<int>();
|
|
nverts = 0;
|
|
poly = new List<int>();
|
|
}
|
|
|
|
public int Npoly()
|
|
{
|
|
return poly.Count;
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
nverts = 0;
|
|
verts.Clear();
|
|
}
|
|
};
|
|
} |