16 lines
325 B
C#
16 lines
325 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class PlateIconSingleUI : MonoBehaviour
|
|
{
|
|
|
|
[SerializeField] private Image image;
|
|
|
|
public void SetKitchenObjectSO(KitchenObjectSO kitchenObjectSO)
|
|
{
|
|
image.sprite = kitchenObjectSO.sprite;
|
|
}
|
|
|
|
}
|