13 lines
222 B
C#
13 lines
222 B
C#
using UnityEngine;
|
|
|
|
public class SellableItem : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private SellableItemSO _sellableItemSO;
|
|
|
|
public SellableItemSO GetSellableItemSO()
|
|
{
|
|
return _sellableItemSO;
|
|
}
|
|
}
|