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
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using ProBuilder2.Common;
namespace ProBuilder2.MeshOperations
{
// Token: 0x0200000B RID: 11
internal class ConnectFaceRebuildData
{
// Token: 0x06000073 RID: 115 RVA: 0x0000A34D File Offset: 0x0000874D
public ConnectFaceRebuildData(pb_FaceRebuildData faceRebuildData, List<int> newVertexIndices)
{
this.faceRebuildData = faceRebuildData;
this.newVertexIndices = newVertexIndices;
}
// Token: 0x0400001D RID: 29
public pb_FaceRebuildData faceRebuildData;
// Token: 0x0400001E RID: 30
public List<int> newVertexIndices;
}
}