using System; using System.Collections.Generic; using UnityEngine; namespace UniVRM10 { public interface IVrm10Animation : IDisposable { (INormalizedPoseProvider, ITPoseProvider) ControlRig { get; } IReadOnlyDictionary> ExpressionMap { get; } public void ShowBoxMan(bool enable); LookAtInput? LookAt { get; } } }