LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/UnlockablesList.cs
2023-12-22 18:30:10 -05:00

8 lines
250 B
C#

using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName = "ScriptableObjects/Unlockables", order = 2)]
public class UnlockablesList : ScriptableObject
{
public List<UnlockableItem> unlockables = new List<UnlockableItem>();
}