2025-07-29 18:18:16 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
|
{
|
|
|
|
|
public interface IItemSlotUiStrategy
|
|
|
|
|
{
|
2025-08-17 06:43:02 +00:00
|
|
|
|
void Setup(ItemSlotUi ui, ItemViewModel model);
|
|
|
|
|
RuntimeAnimatorController GetAnimatorController();
|
2025-07-29 18:18:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|