2025-07-25 07:58:53 +00:00
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
public interface IInventorySlotUi
|
|
|
|
{
|
2025-07-27 19:32:41 +00:00
|
|
|
ItemViewModel Model { get; }
|
|
|
|
void Initialize(ItemViewModel model, RecipeType recipeType = RecipeType.None);
|
|
|
|
bool CanCraft();
|
|
|
|
void SetActive(bool value);
|
2025-07-25 07:58:53 +00:00
|
|
|
}
|
|
|
|
}
|