10 lines
178 B
C#
10 lines
178 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class FoodObjectSO : ScriptableObject
|
|
{
|
|
public Transform prefab;
|
|
public string objectName;
|
|
public float objectPrice;
|
|
}
|