13 lines
239 B
C#
13 lines
239 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class KitchenObjectSO : ScriptableObject
|
|
{
|
|
|
|
public Transform prefab;
|
|
public Sprite sprite;
|
|
public string objectName;
|
|
|
|
}
|