28 lines
561 B
C#
28 lines
561 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
<<<<<<< HEAD
|
|
public class PlateIconSingleUI : MonoBehaviour
|
|
{
|
|
[SerializeField] private Image image;
|
|
|
|
public void SetKitchenObjectSO(KitchenObjectSO kitchenObjectOS)
|
|
{
|
|
image.sprite = kitchenObjectOS.sprite;
|
|
}
|
|
}
|
|
=======
|
|
namespace UI
|
|
{
|
|
public class PlateIconSingleUI : MonoBehaviour
|
|
{
|
|
[SerializeField] private Image image;
|
|
|
|
public void SetKitchenObjectSO(KitchenObjectSO kitchenObjectOS)
|
|
{
|
|
image.sprite = kitchenObjectOS.sprite;
|
|
}
|
|
}
|
|
}
|
|
>>>>>>> 106e381fe (Add new RecipeSOs with Bacon)
|