11 lines
238 B
C#
11 lines
238 B
C#
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
public interface IItemSlotUiStrategy
|
|
{
|
|
void Setup(ItemSlotUi ui, ItemViewModel model);
|
|
RuntimeAnimatorController GetAnimatorController();
|
|
}
|
|
} |