13 lines
259 B
C#
13 lines
259 B
C#
// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GLTFast.FakeSchema
|
|
{
|
|
|
|
[System.Serializable]
|
|
class Mesh : NamedObject
|
|
{
|
|
public MeshPrimitive[] primitives;
|
|
}
|
|
}
|