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

24 lines
604 B
C#

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;
}
}