2025-07-29 18:18:16 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
|
{
|
|
|
|
|
public interface IItemSlotUiStrategy
|
|
|
|
|
{
|
|
|
|
|
string AnimatorControllerKey { get; }
|
2025-08-07 08:52:45 +00:00
|
|
|
|
Task Setup(ItemSlotUi ui, ItemViewModel model);
|
2025-07-29 18:18:16 +00:00
|
|
|
|
Task<RuntimeAnimatorController> GetAnimatorController();
|
|
|
|
|
}
|
|
|
|
|
}
|