using System.Collections; using System.Collections.Generic; using UnityEngine; namespace NEG.Utils.Achievments { using AchievmentTypes; [CreateAssetMenu(menuName = "Achivments/Collection")] public class AchivmentDefinitionCollection : ScriptableObject { [field: SerializeField] public List Achivments { get; private set; } = new List(); } }