create base item SO for container. still need to set container type for different item types (sellable or not)

This commit is contained in:
Vladimir Koshevarov
2023-03-05 19:06:31 +02:00
parent 1b5e1b9359
commit 471fc5df93
9 changed files with 90 additions and 42 deletions
@@ -0,0 +1,7 @@
using UnityEngine;
public class BaseItemSO : ScriptableObject
{
public string ItemName;
public Sprite Icon;
}