ProjectDDD/Assets/_DDD/_Scripts/GameUi/RestaurantManagementUi/ItemUi/IItemSlotUiStrategy.cs
2025-08-04 08:09:01 +09:00

12 lines
290 B
C#

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