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

10 lines
252 B
C#

namespace DDD
{
public interface IInventorySlotUi
{
ItemViewModel Model { get; }
void Initialize(ItemViewModel model, RecipeType recipeType = RecipeType.None);
bool CanCraft();
void SetActive(bool value);
}
}