11 lines
196 B
C#
11 lines
196 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class SellableItemSO : ScriptableObject
|
|
{
|
|
public Transform Prefab;
|
|
public string ItemName;
|
|
public float Price;
|
|
public Sprite Icon;
|
|
}
|