using System.Collections.Generic; namespace UniVRM10 { /// /// Receive LooAtEyeDirection, and Apply to bone transforms. /// internal interface ILookAtEyeDirectionApplicable { void Apply(LookAtEyeDirection eyeDirection, Dictionary actualWeights); void Restore(); } }