14 lines
293 B
C#
14 lines
293 B
C#
// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#if GLTFAST_SAFE
|
|
namespace GLTFast.FakeSchema {
|
|
|
|
[System.Serializable]
|
|
class AccessorSparse {
|
|
public string indices;
|
|
public string values;
|
|
}
|
|
}
|
|
#endif
|