using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "MatchDotLevel", menuName = "ScriptableObjects/MatchDotLevel", order = 1)] public class MatchDotLevelScriptable : ScriptableObject { public int colorCount; public List colors = new List(); public List id = new List(); }