using System.Collections; using System.Collections.Generic; using BITKit; using Unity.Mathematics; using UnityEngine; namespace Project.B.Animation { public interface IHumanoidTransitionAnimationFactory:ITag { IWrapper CreateIdleToWalk(); IWrapper CreateWalkToIdle(); IWrapper CreateIdleTurn(); object CreateRunToIdle(); } }