using System.Collections.Generic; namespace UniVRM10 { public interface IExternalUnityObject { Dictionary GetExternalUnityObjects() where T : UnityEngine.Object; void SetExternalUnityObject(UnityEditor.AssetImporter.SourceAssetIdentifier sourceAssetIdentifier, T obj) where T : UnityEngine.Object; } }