ProjectDDD/Assets/_DDD/_Scripts/GameUi/RestaurantManagementUi/ItemUi/IItemSlotUiStrategy.cs

12 lines
290 B
C#
Raw Normal View History

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