19 lines
321 B
C#
19 lines
321 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace MTAssets.UltimateLODSystem.MeshSimplifier.Internal
|
|
{
|
|
internal struct Ref
|
|
{
|
|
public int tid;
|
|
|
|
public int tvertex;
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public void Set(int tid, int tvertex)
|
|
{
|
|
this.tid = tid;
|
|
this.tvertex = tvertex;
|
|
}
|
|
}
|
|
}
|