using System.Threading.Tasks; using UnityEngine; namespace DDD { public interface IItemSlotUiStrategy { void Setup(ItemSlotUi ui, ItemViewModel model); RuntimeAnimatorController GetAnimatorController(); } }