Files
2026-07-06 08:47:33 +08:00

13 lines
345 B
C#

namespace DrawXXL
{
public struct InternalDXXL_SubMeshIdentifier
{
public int lengthOfSubMesh_inVertices;
public int i_startOfSubMesh_insideTheFinalVertsList;
public enum DepthTestType { meshIsHidableBehindOtherGeometry, meshAlwaysOverlaysOtherGeometry };
public DepthTestType depthTestType;
}
}