12 lines
233 B
C#
12 lines
233 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class ObjectSO : ScriptableObject {
|
|
|
|
public Transform prefab;
|
|
public string objectName;
|
|
public float basePrice;
|
|
}
|