added new models

This commit is contained in:
2023-03-03 09:30:17 +02:00
parent f5733d0ffd
commit 5e4be5be1c
57 changed files with 2212 additions and 42 deletions
@@ -0,0 +1,9 @@
using UnityEngine;
[CreateAssetMenu()]
public class SellableItemSO : ScriptableObject
{
public Transform prefab;
public string objectName;
public float objectPrice;
}