LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/AllItemsList.cs

9 lines
223 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = "ScriptableObjects/ItemsList", order = 2)]
public class AllItemsList : ScriptableObject
{
public List<Item> itemsList = new List<Item>();
}