10 lines
252 B
C#
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);
|
|
}
|
|
} |