12 lines
290 B
C#
12 lines
290 B
C#
|
using System.Threading.Tasks;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace DDD
|
|||
|
{
|
|||
|
public interface IItemSlotUiStrategy
|
|||
|
{
|
|||
|
string AnimatorControllerKey { get; }
|
|||
|
Task Setup(ItemSlotUi ui, ItemViewModel model);
|
|||
|
Task<RuntimeAnimatorController> GetAnimatorController();
|
|||
|
}
|
|||
|
}
|