13 lines
195 B
C#
13 lines
195 B
C#
|
namespace Kav
|
||
|
{
|
||
|
public class Mesh
|
||
|
{
|
||
|
public MeshPart[] MeshParts { get; }
|
||
|
|
||
|
public Mesh(MeshPart[] meshParts)
|
||
|
{
|
||
|
MeshParts = meshParts;
|
||
|
}
|
||
|
}
|
||
|
}
|