mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-15 09:44:43 -05:00
13 lines
194 B
C#
13 lines
194 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
[Serializable]
|
|
public sealed class VRM10ControllerMeta
|
|
{
|
|
[SerializeField]
|
|
public VRM10MetaObject Meta;
|
|
}
|
|
}
|