namespace Kav { public class Mesh { public MeshPart[] MeshParts { get; } public Mesh(MeshPart[] meshParts) { MeshParts = meshParts; } } }