Files
2026-03-04 10:03:45 +08:00

19 lines
330 B
C#

using System.Runtime.CompilerServices;
namespace MTAssets.UltimateLODSystem.MeshSimplifier.Internal
{
internal struct BorderVertex
{
public int index;
public int hash;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public BorderVertex(int index, int hash)
{
this.index = index;
this.hash = hash;
}
}
}