9 lines
138 B
C#
9 lines
138 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class SellableItemSO : BaseItemSO
|
|
{
|
|
public Transform Prefab;
|
|
public float Price;
|
|
}
|