This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
namespace TriangleNet.Geometry
{
// Token: 0x02000032 RID: 50
public class RegionPointer
{
// Token: 0x060001B4 RID: 436 RVA: 0x0001850F File Offset: 0x0001670F
public RegionPointer(double x, double y, int id)
{
this.point = new Point(x, y);
this.id = id;
}
// Token: 0x04000107 RID: 263
internal Point point;
// Token: 0x04000108 RID: 264
internal int id;
}
}