2026-05-30 09:16:35 +07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Invector.vItemManager
|
|
|
|
|
|
{
|
2026-06-08 23:25:33 +07:00
|
|
|
|
[CreateAssetMenu(menuName = "BABA_YAGA/Invector/Inventory/New Item List")]
|
2026-05-30 09:16:35 +07:00
|
|
|
|
public class vItemListData : ScriptableObject
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<vItem> items = new List<vItem>();
|
|
|
|
|
|
|
|
|
|
|
|
public bool inEdition;
|
|
|
|
|
|
|
|
|
|
|
|
public bool itemsHidden = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|