ProjectDDD/Assets/_DDD/_Scripts/GameUi/New/IItemSlotUiStrategy.cs

7 lines
129 B
C#
Raw Normal View History

2025-07-29 15:56:47 +00:00
namespace DDD
{
public interface IItemSlotUiStrategy
{
void Setup(ItemSlotUi ui, ItemViewModel model);
}
}