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

9 lines
250 B
C#
Raw Normal View History

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