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