Files
2026-06-04 11:42:34 +02:00

40 lines
803 B
C#

using System;
using System.Collections.Generic;
namespace Poly2Tri
{
// Token: 0x02000005 RID: 5
public class PolygonSet
{
// Token: 0x06000022 RID: 34 RVA: 0x00002595 File Offset: 0x00000795
public PolygonSet()
{
}
// Token: 0x06000023 RID: 35 RVA: 0x000025A8 File Offset: 0x000007A8
public PolygonSet(Polygon poly)
{
this._polygons.Add(poly);
}
// Token: 0x06000024 RID: 36 RVA: 0x000025C7 File Offset: 0x000007C7
public void Add(Polygon p)
{
this._polygons.Add(p);
}
// Token: 0x17000007 RID: 7
// (get) Token: 0x06000025 RID: 37 RVA: 0x000025D5 File Offset: 0x000007D5
public IEnumerable<Polygon> Polygons
{
get
{
return this._polygons;
}
}
// Token: 0x04000009 RID: 9
protected List<Polygon> _polygons = new List<Polygon>();
}
}