KitchenChaos/Assets/Scripts/ScriptableObjects/KitchenObjectSO.cs

11 lines
167 B
C#

using UnityEngine;
[CreateAssetMenu]
public class KitchenObjectSO : ScriptableObject
{
public Transform prefab;
public Sprite sprite;
public string objectName;
}