17 lines
307 B
C#
17 lines
307 B
C#
// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GLTFast.Documentation.Examples
|
|
{
|
|
|
|
#region ExtraData
|
|
using UnityEngine;
|
|
|
|
class ExtraData : MonoBehaviour
|
|
{
|
|
public string someExtraKey;
|
|
}
|
|
|
|
#endregion
|
|
}
|