KitchenChaos/Assets/Scripts/ScriptableObjects/KitchenObjectSO.cs

8 lines
174 B
C#

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